Home
last modified time | relevance | path

Searched refs:entry_id (Results 1 - 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_execution_limitations.cpp35 for (uint32_t entry_id : _.FunctionEntryPoints(inst->id())) { in ValidateExecutionLimitations()
36 const auto* models = _.GetExecutionModels(entry_id); in ValidateExecutionLimitations()
41 << entry_id << "."; in ValidateExecutionLimitations()
47 << "OpEntryPoint Entry Point <id> '" << _.getIdName(entry_id) in ValidateExecutionLimitations()
58 if (!func->CheckLimitations(_, _.function(entry_id), &reason)) { in ValidateExecutionLimitations()
60 << "OpEntryPoint Entry Point <id> '" << _.getIdName(entry_id) in ValidateExecutionLimitations()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_execution_limitations.cpp35 for (uint32_t entry_id : _.FunctionEntryPoints(inst->id())) { in ValidateExecutionLimitations()
36 const auto* models = _.GetExecutionModels(entry_id); in ValidateExecutionLimitations()
41 << entry_id << "."; in ValidateExecutionLimitations()
47 << "OpEntryPoint Entry Point <id> '" << _.getIdName(entry_id) in ValidateExecutionLimitations()
58 if (!func->CheckLimitations(_, _.function(entry_id), &reason)) { in ValidateExecutionLimitations()
60 << "OpEntryPoint Entry Point <id> '" << _.getIdName(entry_id) in ValidateExecutionLimitations()
/third_party/spirv-tools/source/val/
H A Dvalidate_execution_limitations.cpp33 for (uint32_t entry_id : _.FunctionEntryPoints(inst->id())) { in ValidateExecutionLimitations()
34 const auto* models = _.GetExecutionModels(entry_id); in ValidateExecutionLimitations()
39 << entry_id << "."; in ValidateExecutionLimitations()
45 << "OpEntryPoint Entry Point <id> " << _.getIdName(entry_id) in ValidateExecutionLimitations()
56 if (!func->CheckLimitations(_, _.function(entry_id), &reason)) { in ValidateExecutionLimitations()
58 << "OpEntryPoint Entry Point <id> " << _.getIdName(entry_id) in ValidateExecutionLimitations()
/third_party/curl/tests/unit/
H A Dunit1609.c118 void *entry_id; variable
141 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port);
142 if(!entry_id)
145 dns = Curl_hash_pick(easy->dns.hostcache, entry_id, strlen(entry_id) + 1);
146 free(entry_id); variable
147 entry_id = NULL;
H A Dunit1607.c122 void *entry_id; variable
140 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port);
141 if(!entry_id)
143 dns = Curl_hash_pick(easy->dns.hostcache, entry_id, strlen(entry_id) + 1);
144 free(entry_id); variable
145 entry_id = NULL;
/third_party/curl/lib/
H A Dhostip.c285 char entry_id[MAX_HOSTCACHE_LEN]; in fetch_addr() local
289 entry_id, sizeof(entry_id)); in fetch_addr()
292 dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1); in fetch_addr()
296 entry_len = create_hostcache_id("*", 1, port, entry_id, sizeof(entry_id)); in fetch_addr()
299 dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1); in fetch_addr()
313 Curl_hash_delete(data->dns.hostcache, entry_id, entry_len + 1); in fetch_addr()
339 Curl_hash_delete(data->dns.hostcache, entry_id, entry_len + 1); in fetch_addr()
478 char entry_id[MAX_HOSTCACHE_LE in Curl_cache_addr() local
1115 char entry_id[MAX_HOSTCACHE_LEN]; Curl_loadhostpairs() local
[all...]
/third_party/spirv-tools/source/opt/
H A Dinvocation_interlock_placement_pass.cpp459 uint32_t entry_id =
461 entry_points.insert(context()->GetFunction(entry_id));
474 uint32_t entry_id =
476 Function* entry_func = context()->GetFunction(entry_id);
H A Dspread_volatile_semantics.cpp247 for (auto entry_id : entry_function_ids) {
249 context()->CollectCallTreeFromRoots(entry_id, &funcs);
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftrfork.c783 FT_Int32 entry_id, entry_offset, entry_length = 0; in raccess_guess_apple_generic() local
813 if ( FT_READ_LONG( entry_id ) ) in raccess_guess_apple_generic()
815 if ( entry_id == resource_fork_entry_id ) in raccess_guess_apple_generic()
/third_party/ffmpeg/libavcodec/
H A Ddvbsubdec.c1054 int entry_id, depth , full_range; in dvbsub_parse_clut_segment() local
1092 entry_id = *buf++; in dvbsub_parse_clut_segment()
1122 ff_dlog(avctx, "clut %d := (%d,%d,%d,%d)\n", entry_id, r, g, b, alpha); in dvbsub_parse_clut_segment()
1129 if (depth & 0x80 && entry_id < 4) in dvbsub_parse_clut_segment()
1130 clut->clut4[entry_id] = RGBA(r,g,b,255 - alpha); in dvbsub_parse_clut_segment()
1131 else if (depth & 0x40 && entry_id < 16) in dvbsub_parse_clut_segment()
1132 clut->clut16[entry_id] = RGBA(r,g,b,255 - alpha); in dvbsub_parse_clut_segment()
1134 clut->clut256[entry_id] = RGBA(r,g,b,255 - alpha); in dvbsub_parse_clut_segment()
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H A Dfunction.cc1501 const auto entry_id = function_.begin()->id(); in TerminatorsAreValid() local
1509 [this, &block, entry_id](const uint32_t succ_id) -> bool { in TerminatorsAreValid()
1510 if (succ_id == entry_id) { in TerminatorsAreValid()
1512 << " branches to function entry block " << entry_id; in TerminatorsAreValid()
1530 const auto entry_id = function_.begin()->id(); in RegisterMerges() local
1584 if (header == entry_id) { in RegisterMerges()
1585 return Fail() << "Function entry block " << entry_id in RegisterMerges()
1740 const auto entry_id = block_order_[0]; in LabelControlFlowConstructs() local
1773 push_construct(0, Construct::kFunction, entry_id, 0); in LabelControlFlowConstructs()

Completed in 21 milliseconds