/third_party/vk-gl-cts/external/vulkan-docs/src/config/spec-macros/ |
H A D | extension.rb | 89 named :can 98 named :cannot 107 named :may 116 named :must 125 named :optional 134 named :optionally 143 named :required 152 named :should 162 named :reflink 168 named [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | generatedContextualTyping.js | 9 var x3: () => Base[] = function named() { return [d1, d2] }; 12 var x6: { (): Base[]; } = function named() { return [d1, d2] }; function 21 class x15 { member: () => Base[] = function named() { return [d1, d2] } } 24 class x18 { member: { (): Base[]; } = function named() { return [d1, d2] } } 33 class x27 { private member: () => Base[] = function named() { return [d1, d2] } } 36 class x30 { private member: { (): Base[]; } = function named() { return [d1, d2] } } 45 class x39 { public member: () => Base[] = function named() { return [d1, d2] } } 48 class x42 { public member: { (): Base[]; } = function named() { return [d1, d2] } } 57 class x51 { static member: () => Base[] = function named() { return [d1, d2] } } 60 class x54 { static member: { (): Base[]; } = function named() { retur [all...] |
H A D | lateBoundDestructuringImplicitAnyError.js | 2 let named = "foo"; 3 let {[named]: prop} = {prop: "foo"}; 14 let {[named]: prop2} = numIndexed; 18 let {[named]: prop4} = strIndexed; 32 var named = "foo";
variable 33 var _a = { prop: "foo" }, _b = named, prop = _a[_b];
40 var _c = numIndexed, _d = named, prop2 = _c[_d];
44 var _g = strIndexed, _h = named, prop4 = _g[_h];
|
H A D | destructuredLateBoundNameHasCorrectTypes.js | 5 const named = "prop"; 7 let { [named]: computed } = { prop: "b" }; 18 const named = "prop";
19 let { [named]: computed } = { prop: "b" };
|
H A D | importsNotUsedAsValues_error.js | 16 import Default, * as named from './a'; // Error 18 let b: named.B;
|
/third_party/mesa3d/src/amd/vulkan/radix_sort/ |
H A D | radix_sort_vk.c | 135 duoni.objectHandle = (uint64_t)rs->pipelines.named.init; in rs_debug_utils_set() 139 duoni.objectHandle = (uint64_t)rs->pipelines.named.fill; in rs_debug_utils_set() 143 duoni.objectHandle = (uint64_t)rs->pipelines.named.histogram; in rs_debug_utils_set() 147 duoni.objectHandle = (uint64_t)rs->pipelines.named.prefix; in rs_debug_utils_set() 151 duoni.objectHandle = (uint64_t)rs->pipelines.named.scatter[0].even; in rs_debug_utils_set() 155 duoni.objectHandle = (uint64_t)rs->pipelines.named.scatter[0].odd; in rs_debug_utils_set() 161 duoni.objectHandle = (uint64_t)rs->pipelines.named.scatter[1].even; in rs_debug_utils_set() 165 duoni.objectHandle = (uint64_t)rs->pipelines.named.scatter[1].odd; in rs_debug_utils_set() 683 rs->pipeline_layouts.named.histogram, in radix_sort_vk_sort_devaddr() 689 vkCmdBindPipeline(cb, VK_PIPELINE_BIND_POINT_COMPUTE, rs->pipelines.named in radix_sort_vk_sort_devaddr() [all...] |
H A D | radix_sort_vk.h | 129 struct rs_pipeline_layouts_named named; member 135 struct rs_pipelines_named named; member
|
/third_party/python/Lib/ |
H A D | string.py | 80 (?P<named>{id}) | # delimiter and a Python identifier 112 named = mo.group('named') or mo.group('braced') 113 if named is not None: 114 return str(mapping[named]) 119 raise ValueError('Unrecognized named group in pattern', 130 named = mo.group('named') or mo.group('braced') 131 if named is not None: 133 return str(mapping[named]) [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | glthread_bufferobj.c | 239 bool named; member 256 else if (!cmd->named && target_or_name == GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD) in _mesa_unmarshal_BufferData() 264 } else if (cmd->named) { in _mesa_unmarshal_BufferData() 294 const GLvoid *data, GLenum usage, bool named, in _mesa_marshal_BufferData_merged() 298 bool external_mem = !named && in _mesa_marshal_BufferData_merged() 304 (named && target_or_name == 0))) { in _mesa_marshal_BufferData_merged() 306 if (named) { in _mesa_marshal_BufferData_merged() 324 cmd->named = named; in _mesa_marshal_BufferData_merged() 366 bool named; member 293 _mesa_marshal_BufferData_merged(GLuint target_or_name, GLsizeiptr size, const GLvoid *data, GLenum usage, bool named, bool ext_dsa, const char *func) _mesa_marshal_BufferData_merged() argument 413 _mesa_marshal_BufferSubData_merged(GLuint target_or_name, GLintptr offset, GLsizeiptr size, const GLvoid *data, bool named, bool ext_dsa, const char *func) _mesa_marshal_BufferSubData_merged() argument [all...] |
/third_party/ltp/testcases/network/stress/dns/ |
H A D | dns-stress.sh | 38 test -s named.pid && kill -9 $(cat named.pid) > /dev/null 45 tst_require_cmds named dig 67 cat << EOD > named.conf 70 pid-file "named.pid"; 167 tst_resm TINFO "Start named daemon, port $port" 168 named -$TST_IPVER -c named.conf -p $port || \ 169 tst_brkm TBROK "Failed to run named daemon" 171 # Make sure named [all...] |
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/sem_getvalue/ |
H A D | stress.c | 22 * -> Create a named semaphore and an unnamed semaphore, initialized to 0. 119 sem_t unnamed, *named; in main() local 144 named = sem_open(SEM_NAME, O_CREAT, 0777, INIT_VAL); in main() 146 if (named == SEM_FAILED) { in main() 163 ret = pthread_create(&child1, NULL, threaded, named); in main() 177 ret = sem_getvalue(named, &value); in main() 187 ("sem_getvalue returned an invalid value for the named semaphore"); in main() 220 ret = sem_close(named); in main()
|
/third_party/node/deps/npm/node_modules/ip-address/node_modules/sprintf-js/src/ |
H A D | sprintf.js | 171 throw new SyntaxError('[sprintf] failed to parse named argument key') 176 throw new SyntaxError('[sprintf] failed to parse named argument key') 184 throw new Error('[sprintf] mixing positional and named placeholders is not (yet) supported')
|
/third_party/rust/crates/syn/src/ |
H A D | data.rs | 49 pub named: Punctuated<Field, Token![,]>, 64 /// iterator can be used to iterate over a named or unnamed struct or 69 Fields::Named(f) => f.named.iter(), in iter() 75 /// object. This iterator can be used to iterate over a named or unnamed 80 Fields::Named(f) => f.named.iter_mut(), in iter_mut() 89 Fields::Named(f) => f.named.len(), in len() 98 Fields::Named(f) => f.named.is_empty(), in is_empty() 111 Fields::Named(f) => f.named.into_iter(), in into_iter() 285 named: content.parse_terminated(Field::parse_named, Token![,])?, in parse() 302 /// Parses a named (brace [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/ |
H A D | nouveau_screen.h | 114 } named; member 123 p_atomic_add(&(s)->stats.named.n, (v)); \ 126 p_atomic_add(&nouveau_screen((r)->base.screen)->stats.named.n, v); \
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_state.h | 191 } named; member 195 #define SI_STATE_IDX(name) (offsetof(union si_state, named.name) / sizeof(struct si_pm4_state *)) 470 ((sctx)->queued.named.member != (sctx)->emitted.named.member) 473 ((sctx)->queued.named.member && si_pm4_state_changed(sctx, member)) 477 (sctx)->queued.named.member = (value); \ 478 if (value && value != (sctx)->emitted.named.member) \
|
H A D | si_state_binning.c | 179 struct si_state_dsa *dsa = sctx->queued.named.dsa; in si_get_depth_bin_size() 389 struct si_state_dsa *dsa = sctx->queued.named.dsa; in gfx10_get_bin_sizes() 445 struct si_state_blend *blend = sctx->queued.named.blend; in si_emit_dpbb_state() 446 struct si_state_dsa *dsa = sctx->queued.named.dsa; in si_emit_dpbb_state()
|
H A D | si_state_viewport.c | 49 float line_width = sctx->queued.named.rasterizer->line_width; in si_get_small_prim_cull_info() 68 if (!sctx->queued.named.rasterizer->half_pixel_center) { in si_get_small_prim_cull_info() 160 if (!ctx->queued.named.rasterizer->scissor_enable) in si_set_scissor_states() 264 const struct si_state_rasterizer *rs = ctx->queued.named.rasterizer; in si_emit_guardband() 403 bool scissor_enabled = ctx->queued.named.rasterizer->scissor_enable; in si_emit_scissors() 550 bool clip_halfz = ctx->queued.named.rasterizer->clip_halfz; in si_emit_depth_ranges()
|
H A D | si_state_draw.cpp | 67 struct si_state_rasterizer *rs = sctx->queued.named.rasterizer; in si_emit_spi_map() 220 sctx->vs_uses_base_instance = sctx->queued.named.hs->uses_base_instance; in si_update_shaders() 233 key.u.hs_wave32 = sctx->queued.named.hs->wave_size == 32; in si_update_shaders() 335 scratch_size = MAX2(scratch_size, sctx->queued.named.hs->config.scratch_bytes_per_wave); in si_update_shaders() 515 si_prefetch_shader_async<GFX_VERSION>(sctx, sctx->queued.named.hs); 522 si_prefetch_shader_async<GFX_VERSION>(sctx, sctx->queued.named.gs); 525 si_prefetch_shader_async<GFX_VERSION>(sctx, sctx->queued.named.gs); 534 si_prefetch_shader_async<GFX_VERSION>(sctx, sctx->queued.named.hs); 541 si_prefetch_shader_async<GFX_VERSION>(sctx, sctx->queued.named.gs); 543 si_prefetch_shader_async<GFX_VERSION>(sctx, sctx->queued.named [all...] |
H A D | si_gpu_load.c | 75 p_atomic_inc(&counters->named.field.busy); \ 77 p_atomic_inc(&counters->named.field.idle); \ 214 (&sscreen->mmio_counters.named.field.busy - sscreen->mmio_counters.array)
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_pan.c | 97 int out_ch_id, in_ch_id, len, named, ret, sign = 1; in init() local 98 int nb_in_channels[2] = { 0, 0 }; // number of unnamed and named input channels in init() 125 if (parse_channel_name(&arg, &out_ch_id, &named)) { in init() 131 if (named) { in init() 170 if (parse_channel_name(&arg, &in_ch_id, &named)){ in init() 176 nb_in_channels[named]++; in init() 177 if (nb_in_channels[!named]) { in init() 179 "Can not mix named and numbered channels\n"); in init()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_gpu_load.c | 77 p_atomic_inc(&counters->named.field.busy); \ 79 p_atomic_inc(&counters->named.field.idle); \ 201 #define BUSY_INDEX(rscreen, field) (&rscreen->mmio_counters.named.field.busy - \
|
/third_party/libabigail/tests/data/test-read-ctf/ |
H A D | test-struct-iteration.c | 13 } named; member
|
/third_party/rust/crates/clap/clap_derive/src/derives/ |
H A D | subcommand.rs | 268 .named in gen_augment() 488 .named in gen_from_arg_matches() 599 let field_names = fields.named.iter().map(|field| { in gen_update_from_arg_matches() 603 .named in gen_update_from_arg_matches()
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | tracediff.sh | 62 echo " -N, --named generate symbolic names for raw pointer values" 114 -N|--named|-M|--method-only)
|
/third_party/skia/tests/ |
H A D | NdkEncodeTest.cpp | 296 for (auto named : colorSpaces) { in DEF_TEST() 297 if (nearly_equal(actual, named.cs.get())) { in DEF_TEST() 298 name = named.name; in DEF_TEST()
|