Home
last modified time | relevance | path

Searched refs:neighbor (Results 1 – 25 of 31) sorted by relevance

12

/external/toolchain-utils/bestflags/
Dflags_util.py78 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/
DTypeData.java33 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/
Dprint-olsr.c157 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/
Dipv6-bad-version.out1 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…
Dpimv2_sm-v.out17 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
Dpimv2_dm-v.out19 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
Ddcb_ets.out106 … (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…
Ddcb_qcn.out204 … (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, len…
/external/opencv/cv/src/
Dcvcalibinit.cpp597 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/
Dshear.c251 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 …]
Daccelerate-kernels-private.h1478 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/
Drussian.txt13 …ессмысленные слова в свои фразы при разговоре, например: «Hi-diddly-ho, neighbor-ino» («Приветик, …
/external/deqp/doc/testspecs/GLES2/
Dperformance.texture.format.txt28 + Nearest neighbor -filtering and clamp to edge -wrap mode
37 filtering (nearest neighbor mode). Shader body is populated with one or
Dfunctional.texture.teximage.txt52 resulting images are compared against the reference. Nearest-neighbor -filtering
/external/libvpx/libvpx/vp8/decoder/
Derror_concealment.c346 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/
DGraph.java267 public void addNeighbor(Node<T> neighbor) { in addNeighbor() argument
268 m_neighbors.add(neighbor); in addNeighbor()
/external/iptables/extensions/
Dlibip6t_SNPT.man24 You may need to enable IPv6 neighbor proxy:
Dlibip6t_DNPT.man24 You may need to enable IPv6 neighbor proxy:
/external/libvorbis/doc/
D09-helper.tex81 \subsubsection{low_neighbor} \label{vorbis:spec:low:neighbor}
88 \subsubsection{high_neighbor} \label{vorbis:spec:high:neighbor}
D07-floor1.tex266 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/
Dfunctional.texture.mipmap.txt52 a 3x3 neighbor around the pixel.
Dfunctional.texture.format.txt39 - Nearest-neighbor filtering
/external/libyuv/files/docs/
Dfiltering.md143 …d ideally be the same as bilinear, but pixel by pixel, round to nearest neighbor. But as is, it i…
/external/clang/test/
Dlit.cfg306 # Regex assertions to reject neighbor hyphens/dots (seen in some tests).
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/
DTransliterator_Kanji_English.txt5500 鄰>'[neighbor]';
5802 隣>'[neighbor]';

12