HomeSort by relevance Sort by last modified time
    Searched full:type_code (Results 1 - 22 of 22) sorted by null

  /external/flatbuffers/include/flatbuffers/
minireflect.h 218 auto type_code = type_table->type_codes[type_code_idx]; local
219 switch (type_code.base_type) {
221 auto ref = type_table->type_refs[type_code.sequence_ref]();
255 auto type_code = type_table->type_codes[i]; local
256 auto type = static_cast<ElementaryType>(type_code.base_type);
257 auto is_vector = type_code.is_vector != 0;
258 auto ref_idx = type_code.sequence_ref;
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 203 STRINGIFY_CODE(TYPE_CODE, NUMENTRY)
204 STRINGIFY_CODE(TYPE_CODE, VOID)
205 STRINGIFY_CODE(TYPE_CODE, FLOAT)
206 STRINGIFY_CODE(TYPE_CODE, DOUBLE)
207 STRINGIFY_CODE(TYPE_CODE, LABEL)
208 STRINGIFY_CODE(TYPE_CODE, OPAQUE)
209 STRINGIFY_CODE(TYPE_CODE, INTEGER)
210 STRINGIFY_CODE(TYPE_CODE, POINTER)
211 STRINGIFY_CODE(TYPE_CODE, ARRAY)
212 STRINGIFY_CODE(TYPE_CODE, VECTOR
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/command/
explore.py 82 type_code = value.type.code
83 if type_code in Explorer.type_code_to_explorer_map:
84 explorer_class = Explorer.type_code_to_explorer_map[type_code]
108 type_code = datatype.code
109 if type_code in Explorer.type_code_to_explorer_map:
110 explorer_class = Explorer.type_code_to_explorer_map[type_code]
397 type_code = datatype.code
400 if type_code == gdb.TYPE_CODE_STRUCT:
428 if type_code == gdb.TYPE_CODE_UNION:
477 type_code = datatype.cod
    [all...]
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/command/
explore.py 82 type_code = value.type.code
83 if type_code in Explorer.type_code_to_explorer_map:
84 explorer_class = Explorer.type_code_to_explorer_map[type_code]
108 type_code = datatype.code
109 if type_code in Explorer.type_code_to_explorer_map:
110 explorer_class = Explorer.type_code_to_explorer_map[type_code]
397 type_code = datatype.code
400 if type_code == gdb.TYPE_CODE_STRUCT:
428 if type_code == gdb.TYPE_CODE_UNION:
477 type_code = datatype.cod
    [all...]
  /external/scapy/scapy/contrib/
bgp.py     [all...]
bgp.uts 593 raw(BGPPathAttr(type_code = 1, attribute = BGPPAOrigin(origin = 0)))
596 raw(BGPPathAttr(type_code = 2, attribute = BGPPAASPath(segments = [BGPPAASPath.ASPathSegment(segment_type = 2, segment_value = [64501, 64501, 64501])]))) == b'\x80\x02\x08\x02\x03\xfb\xf5\xfb\xf5\xfb\xf5'
600 raw(BGPPathAttr(type_code = 14, attribute = BGPPAMPReachNLRI(afi = 2, safi = 1, nh_addr_len = 16, nh_v6_addr = "2001:db8::2", nlri = [BGPNLRI_IPv6(prefix = "2001:db8:2::/64")]))) == b'\x80\x0e\x1e\x00\x02\x01\x10 \x01\r\xb8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00@ \x01\r\xb8\x00\x02\x00\x00'
604 a.type_flags == 0x90 and a.type_code == 15 and a.attr_ext_len == 88 and a.attribute.afi == 2 and a.attribute.safi == 1 and a.attribute.afi_safi_specific.withdrawn_routes[0].prefix == "6000::/3" and a.attribute.afi_safi_specific.withdrawn_routes[1].prefix == "8000::/3" and a.attribute.afi_safi_specific.withdrawn_routes[2].prefix == "a000::/3" and a.attribute.afi_safi_specific.withdrawn_routes[3].prefix == "c000::/3" and a.attribute.afi_safi_specific.withdrawn_routes[4].prefix == "e000::/4" and a.attribute.afi_safi_specific.withdrawn_routes[5].prefix == "f000::/5" and a.attribute.afi_safi_specific.withdrawn_routes[23].prefix == "1000::/4"
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_target.h 36 TYPE_CODE,
nv50_ir_target.cpp 470 case TYPE_CODE: value = info->codePos; break;
nv50_ir_emit_nv50.cpp     [all...]
  /external/brotli/c/enc/
brotli_bit_stream.c 78 size_t type_code = (type == calculator->last_type + 1) ? 1u : local
82 return type_code;
785 size_t type_code = NextBlockTypeCode(&type_code_calculator, types[i]); local
786 if (i != 0) ++type_histo[type_code];
    [all...]
  /external/libffi/src/arm/
ffi.c 236 int type_code; local
258 && (type_code = vfp_type_p (cif->rtype)) != 0)
262 cif->flags = (unsigned) type_code;
  /external/python/cpython2/Modules/_ctypes/libffi/src/arm/
ffi.c 236 int type_code; local
258 && (type_code = vfp_type_p (cif->rtype)) != 0)
262 cif->flags = (unsigned) type_code;
  /external/python/cpython3/Modules/_ctypes/libffi/src/arm/
ffi.c 236 int type_code; local
258 && (type_code = vfp_type_p (cif->rtype)) != 0)
262 cif->flags = (unsigned) type_code;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
marshal.c 53 #define TYPE_CODE 'c'
425 w_byte(TYPE_CODE, p);
991 case TYPE_CODE:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
marshal.c 52 #define TYPE_CODE 'c'
436 w_byte(TYPE_CODE, p);
996 case TYPE_CODE:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
marshal.c 53 #define TYPE_CODE 'c'
425 w_byte(TYPE_CODE, p);
991 case TYPE_CODE:
    [all...]
  /external/python/cpython2/Python/
marshal.c 46 #define TYPE_CODE 'c'
430 w_byte(TYPE_CODE, p);
990 case TYPE_CODE:
    [all...]
  /external/python/cpython3/Python/
marshal.c 46 #define TYPE_CODE 'c'
534 W_TYPE(TYPE_CODE, p);
    [all...]
  /external/vixl/src/aarch64/
debugger-aarch64.cc 227 Format(const char* fmt, char type_code) : fmt_(fmt), type_code_(type_code) {}
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
pdp11.c 2059 int type_code = aout_symbol(symbol)->type & 0xff; local
    [all...]
aoutx.h 2514 int type_code = aout_symbol (symbol)->type & 0xff; local
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/
rt.jar 

Completed in 787 milliseconds