HomeSort by relevance Sort by last modified time
    Searched refs:type_id (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/harfbuzz_ng/src/
hb-gobject-enums.cc.tmpl 51 static gsize type_id = 0;
53 if (g_once_init_enter (&type_id))
67 g_once_init_leave (&type_id, id);
70 return type_id;
hb-gobject-structs.cc 44 static gsize type_id = 0; \
45 if (g_once_init_enter (&type_id)) { \
49 g_once_init_leave (&type_id, id); \
51 return type_id; \
  /hardware/intel/img/psb_video/src/
psb_ws_driver.c 41 psb_alloc(struct _WsbmVNodeFuncs *func, int type_id) {
42 if (type_id == 0) {
48 vNode->base.type_id = 0;
56 node->type_id = 1;
68 if (node->type_id == 0)
78 * a private part when node->type_id == 0 we only care to clear in that
85 if (node->type_id == 0) {
  /frameworks/base/libs/androidfw/include/androidfw/
ResourceUtils.h 55 inline uint32_t make_resid(uint8_t package_id, uint8_t type_id, uint16_t entry_id) {
56 return (static_cast<uint32_t>(package_id) << 24) | (static_cast<uint32_t>(type_id) << 16) |
Idmap.h 58 const IdmapEntry_header* GetEntryMapForType(uint8_t type_id) const;
LoadedArsc.h 161 uint8_t type_id = ptr->type_spec->id; local
163 type_id = ptr->idmap_entries->target_type_id;
165 f(ptr.get(), type_id - 1);
  /external/v8/src/inspector/build/
generate_protocol_externs.py 54 def full_qualified_type_id(domain_name, type_id):
55 if type_id.find(".") == -1:
56 return "%s.%s" % (domain_name, type_id)
57 return type_id
89 type_id = full_qualified_type_id(domain_name, param["$ref"])
90 if type_id in ref_types:
91 return ref_types[type_id]
93 print "Type not found: " + type_id
94 return "!! Type not found: " + type_id
122 type_id = full_qualified_type_id(domain_name, type["id"] variable
    [all...]
  /frameworks/base/tools/aapt2/compile/
IdAssigner.cpp 38 if (!type->id || type->id.value() == id.type_id()) {
39 type->id = id.type_id();
146 const uint8_t type_id = next_type_iter->first.type_id(); local
147 if (type_id > next_expected_type_id) {
156 next_expected_type_id = type_id + 1;
186 next_entry_iter->first.type_id() != type->id.value()) {
  /external/libchrome/base/metrics/
persistent_memory_allocator.h 201 const T* GetAsArray(Reference ref, uint32_t type_id, size_t count) const {
202 return allocator_->GetAsArray<T>(ref, type_id, count);
207 // point to an object of the specified |type_id|.
208 Reference GetAsReference(const void* memory, uint32_t type_id) const {
209 return allocator_->GetAsReference(memory, type_id);
342 // Get an object referenced by a |ref|. For safety reasons, the |type_id|
344 // and cannot return an object outside of the memory segment. A |type_id| of
412 T* GetAsArray(Reference ref, uint32_t type_id, size_t count) {
415 GetBlockData(ref, type_id, count * sizeof(T))));
418 const T* GetAsArray(Reference ref, uint32_t type_id, size_t count) const
    [all...]
persistent_memory_allocator.cc 99 std::atomic<uint32_t> type_id; // Arbitrary number indicating data type. member in struct:__anon24245::base::PersistentMemoryAllocator::BlockHeader
238 *type_return = block->type_id.load(std::memory_order_relaxed);
367 first_block->type_id.load(std::memory_order_relaxed) != 0 ||
503 uint32_t type_id) const {
513 if (!GetBlockData(ref, type_id, kSizeAny))
537 return block->type_id.load(std::memory_order_relaxed);
559 if (!block->type_id.compare_exchange_strong(
586 bool success = block->type_id.compare_exchange_strong(
595 return block->type_id.compare_exchange_strong(from_type_id, to_type_id,
602 uint32_t type_id) {
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
validate_datarules.cpp 134 auto type_id = inst->words[inst->operands[1].offset]; local
135 auto col_type_instr = _.FindDef(type_id);
171 auto type_id = inst->words[inst->operands[0].offset]; local
172 auto type_instruction = _.FindDef(type_id);
186 auto type_instruction = _.FindDef(inst->type_id);
210 auto type_id = inst->words[inst->operands[i].offset]; local
211 auto type_instruction = _.FindDef(type_id);
212 if (type_instruction == nullptr && !_.IsForwardPointer(type_id)) {
binary.cpp 112 uint32_t type_id);
423 inst->type_id = word;
440 spvOpcodeGeneratesType(opcode) ? inst->result_id : inst->type_id;
520 uint32_t type_id = type_id_iter->second;
522 if (selector_id == type_id) {
528 if (auto error = setNumericTypeInfoForType(&parsed_operand, type_id))
539 assert(inst->type_id);
541 setNumericTypeInfoForType(&parsed_operand, inst->type_id))
715 spv_parsed_operand_t* parsed_operand, uint32_t type_id) {
716 assert(type_id != 0)
    [all...]
validate_decorations.cpp 113 const uint32_t type_id = ptr_instr->word(3);
114 Instruction* type_instr = vstate.FindDef(type_id);
125 isBuiltInStruct(type_id, vstate)) {
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
function.h 58 inline uint32_t type_id() const { return def_inst_->type_id(); } function in class:spvtools::ir::Function
inline_opaque_pass.cpp 54 if (IsOpaqueType(callInst->type_id()))
62 if (IsOpaqueType(argInst->type_id()))
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/val/
instruction.h 44 uint32_t type_id() const { return inst_.type_id; } function in class:libspirv::Instruction
  /external/boringssl/src/crypto/x509v3/
v3_genn.c 67 ASN1_SIMPLE(OTHERNAME, type_id, ASN1_OBJECT),
156 if ((result = OBJ_cmp(a->type_id, b->type_id)) != 0)
235 oth->type_id = oid;
247 *poid = gen->d.otherName->type_id;
  /external/autotest/server/site_tests/firmware_ECThermal/
firmware_ECThermal.py 62 def _get_setting_for_type(self, type_id):
67 type_id: The ID of sensor type.
81 'ectool thermalget %d %d' % (type_id, current_id))
120 type_id = 0
122 setting = self._get_setting_for_type(type_id)
126 type_id = type_id + 1
127 logging.info("Number of tempearture sensor types: %d", type_id)
  /external/libchrome/base/trace_event/
heap_profiler_heap_dump_writer.cc 178 return std::tie(lhs.stack_frame_id, lhs.type_id) <
179 std::tie(rhs.stack_frame_id, rhs.type_id);
209 entry.type_id = bucket.is_broken_down_by_type_name
296 if (entry.type_id != -1) {
298 SStringPrintf(&buffer, "%i", entry.type_id);
heap_profiler_heap_dump_writer.h 51 int type_id; member in struct:base::trace_event::internal::Entry
  /external/scapy/scapy/contrib/
http2.py 1419 type_id = 0 variable in class:H2DataFrame
1495 type_id = 1 variable in class:H2HeadersFrame
1643 type_id = 2 variable in class:H2PriorityFrame
1698 type_id = 3 variable in class:H2ResetFrame
1738 type_id = 4 variable in class:H2SettingsFrame
1776 type_id = 5 variable in class:H2PushPromiseFrame
1851 type_id = 6 variable in class:H2PingFrame
1882 type_id = 7 variable in class:H2GoAwayFrame
1897 type_id = 8 variable in class:H2WindowUpdateFrame
1924 type_id = 9 variable in class:H2ContinuationFrame
    [all...]
  /art/runtime/
type_lookup_table.cc 82 const DexFile::TypeId& type_id = dex_file.GetTypeId(class_def.class_idx_); local
83 const DexFile::StringId& str_id = dex_file.GetStringId(type_id.descriptor_idx_);
96 const DexFile::TypeId& type_id = dex_file.GetTypeId(class_def.class_idx_); local
97 const DexFile::StringId& str_id = dex_file.GetStringId(type_id.descriptor_idx_);
  /frameworks/base/tools/aapt2/
SdkConstants.cpp 64 if (id.package_id() != 0x01 || id.type_id() != 0x01) {
  /hardware/intel/common/libwsbm/src/
wsbm_driver.h 105 int type_id; member in struct:_ValidateNode
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
WsbmWrapper.c 52 vNode->base.type_id = 0;
62 node->type_id = 1;
70 if(node->type_id == 0) {
80 if(node->type_id == 0) {

Completed in 770 milliseconds

1 2 3 4 5