HomeSort by: relevance | last modified time | path
    Searched refs:vni (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/tcpdump/dist/
print-vxlan.c 49 * | VXLAN Network Identifier (VNI) | Reserved |
57 uint32_t vni; local
72 vni = GET_BE_U_3(bp);
74 ND_PRINT("vni %u\n", vni);
print-vxlan-gpe.c 60 * | VXLAN Network Identifier (VNI) | Reserved |
69 uint32_t vni; local
92 vni = GET_BE_U_3(bp);
101 ND_PRINT("vni %u", vni);
print-geneve.c 41 * | Virtual Network Identifier (VNI) | Reserved |
155 uint32_t vni; local
188 vni = GET_BE_U_3(bp);
198 ND_PRINT(", vni 0x%x", vni);
  /src/sys/kern/
vfs_mount.c 464 vfs_vnode_iterator_destroy(struct vnode_iterator *vni)
466 vnode_impl_t *mvip = &vni->vi_vnode;
482 vfs_vnode_iterator_next1(struct vnode_iterator *vni,
485 vnode_impl_t *mvip = &vni->vi_vnode;
528 vfs_vnode_iterator_next(struct vnode_iterator *vni,
532 return vfs_vnode_iterator_next1(vni, f, cl, false);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LiveInterval.cpp 94 VNInfo *VNI = ForVNI ? ForVNI : LR->getNextValue(Def, *VNInfoAllocator);
95 impl().insertAtEnd(Segment(Def, Def.getDeadSlot(), VNI));
96 return VNI;
115 VNInfo *VNI = ForVNI ? ForVNI : LR->getNextValue(Def, *VNInfoAllocator);
116 segments().insert(I, Segment(Def, Def.getDeadSlot(), VNI));
117 return VNI;
378 VNInfo *LiveRange::createDeadDef(VNInfo *VNI) {
381 return CalcLiveRangeUtilSet(this).createDeadDef(VNI->def, nullptr, VNI);
383 return CalcLiveRangeUtilVector(this).createDeadDef(VNI->def, nullptr, VNI)
    [all...]
  /src/external/bsd/libpcap/dist/
gencode.c 9436 /* Check that this is Geneve and the VNI is correct if
9441 enum e_offrel offrel, bpf_u_int32 vni, int has_vni)
9455 if (vni > 0xffffff) {
9456 bpf_error(cstate, "Geneve VNI %u greater than maximum %u",
9457 vni, 0xffffff);
9459 vni <<= 8; /* VNI is in the upper 3 bytes */
9460 b1 = gen_mcmp(cstate, offrel, 12, BPF_W, vni, 0xffffff00);
9469 * - Verify that this actually is Geneve with the right VNI.
9474 gen_geneve4(compiler_state_t *cstate, bpf_u_int32 vni, int has_vni
    [all...]

Completed in 25 milliseconds