/external/toolchain-utils/bestflags/ |
D | flags_util.py | 78 neighbor = flags_dict.copy() 79 neighbor[climb_spec] = Flag(climb_spec, value + 1) 80 results.append(neighbor) 85 neighbor = flags_dict.copy() 86 neighbor[climb_spec] = Flag(climb_spec, value - 1) 87 results.append(neighbor) 91 neighbor = flags_dict.copy() 92 del neighbor[climb_spec] 93 results.append(neighbor)
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | TypeData.java | 33 public abstract void merge(TypeData neighbor); in merge() argument 85 public void merge(TypeData neighbor) {} in merge() argument 137 public void merge(TypeData neighbor) { in merge() argument 138 if (this == neighbor) in merge() 141 if (!(neighbor instanceof TypeName)) in merge() 144 TypeName neighbor2 = (TypeName)neighbor; in merge() 453 public void merge(TypeData neighbor) {} in merge() argument
|
/external/tcpdump/ |
D | print-olsr.c | 157 uint8_t neighbor[4]; member 164 uint8_t neighbor[16]; member 195 ipaddr_string(ndo, lq_neighbor->neighbor), in olsr_print_lq_neighbor4() 220 ip6addr_string(ndo, lq_neighbor->neighbor), in olsr_print_lq_neighbor6() 238 int neighbor; in olsr_print_neighbor() local 241 neighbor = 1; in olsr_print_neighbor() 250 neighbor % 4 == 0 ? "\n\t\t" : " ")); in olsr_print_neighbor()
|
/external/tcpdump/tests/ |
D | ipv6-bad-version.out | 1 IP6 :: > ff02::1:ff76:6c14: ICMP6, neighbor solicitation, who has fe80::20c:29ff:fe76:6c14, length … 3 IP6 :: > ff02::1:ff76:6c14: ICMP6, neighbor solicitation, who has 1111:2222:3333:4444:20c:29ff:fe76…
|
D | pimv2_sm-v.out | 17 Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 51 Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 87 Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 121 Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 157 Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 193 Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 227 Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 263 Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13 283 Join / Prune, cksum 0x5ae5 (correct), upstream-neighbor: 10.0.0.13
|
D | pimv2_dm-v.out | 19 Join / Prune, cksum 0x8fd8 (correct), upstream-neighbor: 10.0.0.1 127 Join / Prune, cksum 0x8fd8 (correct), upstream-neighbor: 10.0.0.1 221 Join / Prune, cksum 0x8fd8 (correct), upstream-neighbor: 10.0.0.1
|
D | dcb_ets.out | 106 … (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, len… 167 … (58) payload length: 24) :: > ff02::1:ff42:ba59: [icmp6 sum ok] ICMP6, neighbor solicitation, len… 275 … (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, len… 770 … (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, len…
|
D | dcb_qcn.out | 204 … (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, len…
|
/external/opencv/cv/src/ |
D | cvcalibinit.cpp | 597 CvCBQuad *neighbor = q->neighbors[i]; in icvOrderFoundConnectedQuads() local 611 if (neighbor && neighbor->ordered == false && neighbor->count == 4) in icvOrderFoundConnectedQuads() 614 icvOrderQuad(neighbor, q->corners[i], (i+2)%4); // set in order in icvOrderFoundConnectedQuads() 615 neighbor->ordered = true; in icvOrderFoundConnectedQuads() 616 neighbor->row = row; in icvOrderFoundConnectedQuads() 617 neighbor->col = col; in icvOrderFoundConnectedQuads() 618 cvSeqPush( stack, &neighbor ); in icvOrderFoundConnectedQuads() 707 CvCBQuad *neighbor = quads[i]->neighbors[j]; in icvOrderFoundConnectedQuads() local 708 if (neighbor && !neighbor->ordered && // is it an inner quad? in icvOrderFoundConnectedQuads() 715 icvOrderQuad(neighbor, quads[i]->corners[j], (j+2)%4); in icvOrderFoundConnectedQuads() [all …]
|
/external/ImageMagick/MagickCore/ |
D | shear.c | 251 neighbor; in RadonProjection() local 259 if (GetMatrixElement(p,x+i+step,y+i,&neighbor) == MagickFalse) in RadonProjection() 261 neighbor+=element; in RadonProjection() 262 if (SetMatrixElement(q,x+2*i,y,&neighbor) == MagickFalse) in RadonProjection() 264 if (GetMatrixElement(p,x+i+step,y+i+1,&neighbor) == MagickFalse) in RadonProjection() 266 neighbor+=element; in RadonProjection() 267 if (SetMatrixElement(q,x+2*i+1,y,&neighbor) == MagickFalse) in RadonProjection() 274 if (GetMatrixElement(p,x+i+step,y+i,&neighbor) == MagickFalse) in RadonProjection() 276 neighbor+=element; in RadonProjection() 277 if (SetMatrixElement(q,x+2*i,y,&neighbor) == MagickFalse) in RadonProjection() [all …]
|
D | accelerate-kernels-private.h | 1478 int2 neighbor; 1479 neighbor.y = y + offset.y; 1480 neighbor.x = x + offset.x; 1483 clampedNeighbor.x = ClampToCanvas(neighbor.x, imageWidth); 1484 clampedNeighbor.y = ClampToCanvas(neighbor.y, imageHeight); 1486 CLPixelType r = (clampedNeighbor.x == neighbor.x 1487 … && clampedNeighbor.y == neighbor.y)?inputImage[clampedNeighbor.y*imageWidth+clampedNeighbor.x] 1541 int2 neighbor, clampedNeighbor; 1543 neighbor.y = y + offset.y; 1544 neighbor.x = x + offset.x; [all …]
|
/external/markdown/tests/misc/ |
D | russian.txt | 13 …ессмысленные слова в свои фразы при разговоре, например: «Hi-diddly-ho, neighbor-ino» («Приветик, …
|
/external/deqp/doc/testspecs/GLES2/ |
D | performance.texture.format.txt | 28 + Nearest neighbor -filtering and clamp to edge -wrap mode 37 filtering (nearest neighbor mode). Shader body is populated with one or
|
D | functional.texture.teximage.txt | 52 resulting images are compared against the reference. Nearest-neighbor -filtering
|
/external/libvpx/libvpx/vp8/decoder/ |
D | error_concealment.c | 346 static void assign_neighbor(EC_BLOCK *neighbor, MODE_INFO *mi, int block_idx) { in assign_neighbor() argument 348 neighbor->ref_frame = mi->mbmi.ref_frame; in assign_neighbor() 349 neighbor->mv = mi->bmi[block_idx].mv.as_mv; in assign_neighbor()
|
/external/testng/src/main/java/org/testng/internal/ |
D | Graph.java | 267 public void addNeighbor(Node<T> neighbor) { in addNeighbor() argument 268 m_neighbors.add(neighbor); in addNeighbor()
|
/external/iptables/extensions/ |
D | libip6t_SNPT.man | 24 You may need to enable IPv6 neighbor proxy:
|
D | libip6t_DNPT.man | 24 You may need to enable IPv6 neighbor proxy:
|
/external/libvorbis/doc/ |
D | 09-helper.tex | 81 \subsubsection{low_neighbor} \label{vorbis:spec:low:neighbor} 88 \subsubsection{high_neighbor} \label{vorbis:spec:high:neighbor}
|
D | 07-floor1.tex | 266 7) [low_neighbor_offset] = \link{vorbis:spec:low:neighbor}{low_neighbor}([floor1_X_list],[i]) 267 … 8) [high_neighbor_offset] = \link{vorbis:spec:high:neighbor}{high_neighbor}([floor1_X_list],[i])
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.texture.mipmap.txt | 52 a 3x3 neighbor around the pixel.
|
D | functional.texture.format.txt | 39 - Nearest-neighbor filtering
|
/external/libyuv/files/docs/ |
D | filtering.md | 143 …d ideally be the same as bilinear, but pixel by pixel, round to nearest neighbor. But as is, it i…
|
/external/clang/test/ |
D | lit.cfg | 306 # Regex assertions to reject neighbor hyphens/dots (seen in some tests).
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/ |
D | Transliterator_Kanji_English.txt | 5500 鄰>'[neighbor]'; 5802 隣>'[neighbor]';
|