Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_execution_limitations.cpp35 for (uint32_t entry_id : _.FunctionEntryPoints(inst->id())) { in ValidateExecutionLimitations() local
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/spirv-tools/source/val/
Dvalidate_execution_limitations.cpp35 for (uint32_t entry_id : _.FunctionEntryPoints(inst->id())) { in ValidateExecutionLimitations() local
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/
Dvalidate_execution_limitations.cpp35 for (uint32_t entry_id : _.FunctionEntryPoints(inst->id())) { in ValidateExecutionLimitations() local
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/curl/tests/unit/
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);
147 entry_id = NULL;
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);
145 entry_id = NULL;
/third_party/curl/lib/
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_LEN]; in Curl_cache_addr() local
502 entry_id, sizeof(entry_id)); in Curl_cache_addr()
514 dns2 = Curl_hash_add(data->dns.hostcache, entry_id, entry_len + 1, in Curl_cache_addr()
[all …]
/third_party/ffmpeg/libavcodec/
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/spirv-tools/source/opt/
Dspread_volatile_semantics.cpp245 for (auto entry_id : entry_function_ids) { in SetVolatileForLoadsInEntries() local
247 context()->CollectCallTreeFromRoots(entry_id, &funcs); in SetVolatileForLoadsInEntries()
/third_party/skia/third_party/externals/freetype/src/base/
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/skia/third_party/externals/tint/src/reader/spirv/
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()
/third_party/libabigail/tests/data/test-read-dwarf/
Dtest16-pr18904.so.abi10566 …<parameter type-id='type-id-44' name='entry_id' filepath='../../../gcc/liboffloadmic/runtime/compi…
10580 …<parameter type-id='type-id-44' name='entry_id' filepath='../../../gcc/liboffloadmic/runtime/compi…
10596 …<parameter type-id='type-id-44' name='entry_id' filepath='../../../gcc/liboffloadmic/runtime/compi…