Home
last modified time | relevance | path

Searched refs:type_code (Results 1 – 8 of 8) sorted by relevance

/external/flatbuffers/include/flatbuffers/
Dminireflect.h203 auto type_code = type_table->type_codes[type_code_idx]; in IterateValue() local
204 switch (type_code.base_type) { in IterateValue()
206 auto ref = type_table->type_refs[type_code.sequence_ref](); in IterateValue()
237 auto type_code = type_table->type_codes[i]; in IterateObject() local
238 auto type = static_cast<ElementaryType>(type_code.base_type); in IterateObject()
239 auto is_vector = type_code.is_vector != 0; in IterateObject()
240 auto ref_idx = type_code.sequence_ref; in IterateObject()
/external/scapy/scapy/contrib/
Dbgp.py1983 type_code = pkt.type_code
1986 if type_code == 0 or type_code == 255:
1989 elif (type_code >= 30 and type_code <= 39) or\
1990 (type_code >= 41 and type_code <= 127) or\
1991 (type_code >= 129 and type_code <= 254):
1995 if type_code == 0x02 and not bgp_module_conf.use_2_bytes_asn:
1999 _path_attr_objects.get(type_code, conf.raw_layer))(m)
2045 if self.type_code in attributes_flags:
2046 flags_value = attributes_flags.get(self.type_code)
Dbgp.uts593 raw(BGPPathAttr(type_code = 1, attribute = BGPPAOrigin(origin = 0)))
596 raw(BGPPathAttr(type_code = 2, attribute = BGPPAASPath(segments = [BGPPAASPath.ASPathSegment(segmen…
600 raw(BGPPathAttr(type_code = 14, attribute = BGPPAMPReachNLRI(afi = 2, safi = 1, nh_addr_len = 16, n…
604 a.type_flags == 0x90 and a.type_code == 15 and a.attr_ext_len == 88 and a.attribute.afi == 2 and a.…
/external/python/cpython2/Modules/_ctypes/libffi/src/arm/
Dffi.c236 int type_code; in ffi_prep_cif_machdep() local
258 && (type_code = vfp_type_p (cif->rtype)) != 0) in ffi_prep_cif_machdep()
262 cif->flags = (unsigned) type_code; in ffi_prep_cif_machdep()
/external/libffi/src/arm/
Dffi.c236 int type_code; in ffi_prep_cif_machdep() local
258 && (type_code = vfp_type_p (cif->rtype)) != 0) in ffi_prep_cif_machdep()
262 cif->flags = (unsigned) type_code; in ffi_prep_cif_machdep()
/external/brotli/c/enc/
Dbrotli_bit_stream.c78 size_t type_code = (type == calculator->last_type + 1) ? 1u : in NextBlockTypeCode() local
82 return type_code; in NextBlockTypeCode()
787 size_t type_code = NextBlockTypeCode(&type_code_calculator, types[i]); in BuildAndStoreBlockSplitCode() local
788 if (i != 0) ++type_histo[type_code]; in BuildAndStoreBlockSplitCode()
/external/v8/src/wasm/
Dwasm-module-builder.h262 ValueTypeCode type_code; member
Dwasm-module-builder.cc347 buffer.write_u8(import.type_code); in WriteTo()