Home
last modified time | relevance | path

Searched refs:neighbor (Results 1 – 25 of 29) 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/tcpdump/tests/
DOLSRv1_HNA_sgw_1.out10 link-type Symmetric, neighbor-type Symmetric, len 12
11 neighbor 172.29.175.221, link-quality 0.00%, neighbor-link-quality 0.00%
12 link-type Unspecified, neighbor-type Symmetric, len 12
13 neighbor 172.31.175.221, link-quality 0.00%, neighbor-link-quality 0.00%
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/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.c178 uint8_t neighbor[4]; member
185 uint8_t neighbor[16]; member
247 ipaddr_string(ndo, lq_neighbor->neighbor), in olsr_print_lq_neighbor4()
271 ip6addr_string(ndo, lq_neighbor->neighbor), in olsr_print_lq_neighbor6()
288 int neighbor; in olsr_print_neighbor() local
291 neighbor = 1; in olsr_print_neighbor()
300 neighbor % 4 == 0 ? "\n\t\t" : " ")); in olsr_print_neighbor()
/external/python/cpython2/Doc/library/
Dxml.etree.elementtree.rst90 <neighbor name="Austria" direction="E"/>
91 <neighbor name="Switzerland" direction="W"/>
97 <neighbor name="Malaysia" direction="N"/>
103 <neighbor name="Costa Rica" direction="W"/>
104 <neighbor name="Colombia" direction="E"/>
150 >>> for neighbor in root.iter('neighbor'):
151 ... print neighbor.attrib
207 <neighbor name="Austria" direction="E"/>
208 <neighbor name="Switzerland" direction="W"/>
214 <neighbor name="Malaysia" direction="N"/>
[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/deqp/doc/testspecs/GLES3/
Dfunctional.texture.mipmap.txt52 a 3x3 neighbor around the pixel.
Dfunctional.texture.format.txt39 - Nearest-neighbor filtering
/external/mesa3d/src/gallium/docs/source/drivers/freedreno/
Dir3-notes.rst220 ….y`` values. And the grouping_ pass sets up the ``left`` and ``right`` neighbor pointers to the `…
404 …ed to be grouped (for ``fanin``\s, etc) have their ``left`` / ``right`` neighbor pointers setup. …
/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