Searched refs:neighbor (Results 1 - 19 of 19) sorted by relevance

/external/toolchain-utils/bestflags/
H A Dflags_util.py4 """Utility functions to explore the neighbor flags.
35 List of dictionaries of neighbor flags.
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_spe
[all...]
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java33 public abstract void merge(TypeData neighbor); argument
85 public void merge(TypeData neighbor) {} argument
137 public void merge(TypeData neighbor) { argument
138 if (this == neighbor)
141 if (!(neighbor instanceof TypeName))
142 return; // neighbor might be UninitData
144 TypeName neighbor2 = (TypeName)neighbor;
453 public void merge(TypeData neighbor) {} argument
/external/tcpdump/
H A Dprint-olsr.c178 uint8_t neighbor[4]; member in struct:olsr_lq_neighbor4
185 uint8_t neighbor[16]; member in struct:olsr_lq_neighbor6
231 * print a neighbor list with LQ extensions.
245 ND_PRINT((ndo, "\n\t neighbor %s, link-quality %.2f%%"
246 ", neighbor-link-quality %.2f%%",
247 ipaddr_string(ndo, lq_neighbor->neighbor),
269 ND_PRINT((ndo, "\n\t neighbor %s, link-quality %.2f%%"
270 ", neighbor-link-quality %.2f%%",
271 ip6addr_string(ndo, lq_neighbor->neighbor),
282 * print a neighbor lis
288 int neighbor; local
[all...]
/external/scapy/scapy/layers/
H A Dl2.py54 conf.neighbor = Neighbor()
101 x = conf.neighbor.resolve(pkt,pkt.payload)
200 return conf.neighbor.resolve(l2, l3.payload)
201 conf.neighbor.register_l3(Ether, LLC, l2_register_l3)
202 conf.neighbor.register_l3(Dot3, LLC, l2_register_l3)
226 conf.neighbor.register_l3(Dot3, SNAP, l2_register_l3)
259 conf.neighbor.register_l3(Ether, Dot1Q, l2_register_l3)
316 conf.neighbor.register_l3(Ether, ARP, l2_register_l3_arp)
H A Dinet.py825 conf.neighbor.register_l3(Ether, IP, inet_register_l3)
826 conf.neighbor.register_l3(Dot3, IP, inet_register_l3)
H A Dinet6.py95 """Sends an ICMPv6 Neighbor Solicitation message to get the MAC address of the neighbor with specified IPv6 address addr
119 neighborCache.get() method is used on instantiated neighbor cache.
572 conf.neighbor.register_l3(Ether, IPv6, inet6_register_l3)
3463 lead to a modification of a victim's neighbor cache, the function send
3599 messages to a victim, in order to either create a new entry in its neighbor
3617 associate in its neighbor cache with the IPv6 source address of the
3646 that the victim will use to populate its neighbor cache.
3651 unicast, a neighbor solicitation will be performed to get the
/external/opencv/cv/src/
H A Dcvcalibinit.cpp103 int count; // Number of neighbor corners
118 // neighbors and corners are synced, i.e., neighbor 0 shares corner 0
490 // of the neighbor corners in the same row/column.
597 CvCBQuad *neighbor = q->neighbors[i]; local
611 if (neighbor && neighbor->ordered == false && neighbor->count == 4)
614 icvOrderQuad(neighbor, q->corners[i], (i+2)%4); // set in order
615 neighbor->ordered = true;
616 neighbor
707 CvCBQuad *neighbor = quads[i]->neighbors[j]; local
1166 CvCBQuad *neighbor = q->neighbors[i]; local
[all...]
/external/scapy/scapy/contrib/
H A Ddtp.py102 #FieldLenField("length", None, "neighbor", adjust=lambda pkt,x:x + 4),
104 MACField("neighbor", None)
126 p = Dot3(src=mymac, dst="01:00:0c:cc:cc:cc")/LLC()/SNAP()/DTP(tlvlist=[DTPDomain(),DTPStatus(),DTPType(),DTPNeighbor(neighbor=mymac)])
/external/ImageMagick/MagickCore/
H A Dshear.c254 neighbor;
262 if (GetMatrixElement(p,x+i+step,y+i,&neighbor) == MagickFalse)
264 neighbor+=element;
265 if (SetMatrixElement(q,x+2*i,y,&neighbor) == MagickFalse)
267 if (GetMatrixElement(p,x+i+step,y+i+1,&neighbor) == MagickFalse)
269 neighbor+=element;
270 if (SetMatrixElement(q,x+2*i+1,y,&neighbor) == MagickFalse)
277 if (GetMatrixElement(p,x+i+step,y+i,&neighbor) == MagickFalse)
279 neighbor+=element;
280 if (SetMatrixElement(q,x+2*i,y,&neighbor)
251 neighbor; local
317 neighbor; local
[all...]
H A 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
[all...]
/external/libvpx/libvpx/vp8/decoder/
H A Derror_concealment.c346 static void assign_neighbor(EC_BLOCK *neighbor, MODE_INFO *mi, int block_idx) { argument
348 neighbor->ref_frame = mi->mbmi.ref_frame;
349 neighbor->mv = mi->bmi[block_idx].mv.as_mv;
355 * The neighbors are enumerated with the upper-left neighbor as the first
356 * element, the second element refers to the neighbor to right of the previous
357 * neighbor, and so on. The last element refers to the neighbor below the first
358 * neighbor.
415 * neighbor and going to the right.
/external/libxcam/
H A DREADME.md18 stitching multiple neighbor fisheye images.
/external/testng/src/main/java/org/testng/internal/
H A DGraph.java267 public void addNeighbor(Node<T> neighbor) { argument
268 m_neighbors.add(neighbor);
/external/ImageMagick/www/api/
H A Dpaint.php59 <p>FloodfillPaintImage() changes the color value of any pixel that matches target and is an immediate neighbor. If the method FillToBorderMethod is specified, the color value is changed for any neighbor pixel that does not match the bordercolor member of image.</p>
H A Dmagick-image.php1930 <p>MagickFloodfillPaintImage() changes the color value of any pixel that matches target and is an immediate neighbor. If the method FillToBorderMethod is specified, the color value is changed for any neighbor pixel that does not match the bordercolor member of image.</p>
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dbuffer_assignment.cc1167 for (int64 neighbor : interference_map[node]) {
1168 int64 color = assigned_colors[neighbor];
/external/guice/extensions/struts2/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/robolectric/v1/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/kotlinc/lib/
H A Dkotlin-reflect.jarMETA-INF/MANIFEST.MF kotlin/reflect/jvm/internal/ReflectProperties$LazyVal.class ReflectProperties.java package ...

Completed in 680 milliseconds