Home
last modified time | relevance | path

Searched refs:combined (Results 1 - 25 of 73) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
H A DindirectTypeParameterReferences.js9 const combined = (fn: (combined: Combined) => void) => null
12 return {combined, literal}
15 const {combined, literal} = flowtypes<{a: string}>({b: 'b-value'})
22 combined(comb => {
36 var combined = function (fn) { return null; };
38 return { combined: combined, literal: literal };
40 var _a = flowtypes({ b: 'b-value' }), combined = _a.combined, litera
[all...]
H A DgenericFunctionInference2.js7 type MyState = { combined: { foo: number } };
8 declare const foo: Reducer<MyState['combined']['foo']>;
11 combined: combineReducers({ foo }),
15 combined: combineReducers({ foo }),
37 combined: combineReducers({ foo: foo })
40 combined: combineReducers({ foo: foo })
/third_party/node/deps/v8/tools/dev/
H A Dupdate-compile-commands.py60 def AddTargetsForArch(arch, combined):
67 if key not in combined:
68 combined[key] = c
74 combined = {}
75 AddTargetsForArch("x64", combined)
76 AddTargetsForArch("ia32", combined)
77 AddTargetsForArch("arm", combined)
78 AddTargetsForArch("arm64", combined)
80 for key in combined:
81 commands.append(combined[ke
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
H A DPipelineGL.cpp88 // Create an OpenGL shader for each stage and gather the list of combined samplers. in InitializeBase()
129 // Compute links between stages for combined samplers, then bind them to texture units in InitializeBase()
135 for (const CombinedSampler& combined : combinedSamplers[stage]) { in InitializeBase()
136 combinedSamplersSet.insert(combined); in InitializeBase()
144 for (const auto& combined : combinedSamplersSet) { in InitializeBase()
145 const std::string& name = combined.GetName(); in InitializeBase()
157 layout->GetBindGroupLayout(combined.textureLocation.group); in InitializeBase()
158 BindingIndex bindingIndex = bgl->GetBindingIndex(combined.textureLocation.binding); in InitializeBase()
160 GLuint textureIndex = indices[combined.textureLocation.group][bindingIndex]; in InitializeBase()
167 if (combined in InitializeBase()
[all...]
H A DShaderModuleGL.cpp312 // said instruction is used without a combined image sampler. in TranslateToGLSL()
319 // Now translate the separate sampler / textures into combined ones and store their info. We in TranslateToGLSL()
323 for (const auto& combined : compiler.get_combined_image_samplers()) { in TranslateToGLSL()
327 if (combined.sampler_id == dummySamplerId) { in TranslateToGLSL()
334 compiler.get_decoration(combined.sampler_id, spv::DecorationDescriptorSet)); in TranslateToGLSL()
336 compiler.get_decoration(combined.sampler_id, spv::DecorationBinding)); in TranslateToGLSL()
339 compiler.get_decoration(combined.image_id, spv::DecorationDescriptorSet)); in TranslateToGLSL()
341 BindingNumber(compiler.get_decoration(combined.image_id, spv::DecorationBinding)); in TranslateToGLSL()
342 compiler.set_name(combined.combined_id, info->GetName()); in TranslateToGLSL()
/third_party/mesa3d/src/gallium/drivers/lima/ir/
H A Dlima_nir_lower_txp.c121 nir_ssa_def *combined; in lima_nir_lower_txp_instr() local
124 combined = nir_swizzle(b, load_input, xyzw, 4); in lima_nir_lower_txp_instr()
128 combined = nir_swizzle(b, load_input, xyz, 3); in lima_nir_lower_txp_instr()
135 combined = nir_vec3(b, in lima_nir_lower_txp_instr()
142 combined = nir_vec3(b, in lima_nir_lower_txp_instr()
149 combined = nir_vec4(b, in lima_nir_lower_txp_instr()
160 nir_tex_instr_add_src(tex, nir_tex_src_backend1, nir_src_for_ssa(combined)); in lima_nir_lower_txp_instr()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dgen-indic-table.py74 combined = {} variable
77 if i == 2 and not u in combined:
79 if not u in combined:
80 combined[u] = list (defaults)
81 combined[u][i] = v
82 combined = {k:v for k,v in combined.items() if k in ALLOWED_SINGLES or v[2] in ALLOWED_BLOCKS} variable
83 data = combined
84 del combined
H A Dgen-use-table.py106 combined = {} variable
109 if not u in combined:
112 combined[u] = list (defaults)
113 combined[u][i] = v
114 combined = {k: v for k, v in combined.items() if v[6] not in DISABLED_SCRIPTS} variable
115 data = combined
116 del combined
/third_party/node/test/fixtures/wpt/dom/abort/resources/
H A Dabort-signal-any-tests.js144 let combined = signalInterface.any([controller.signal]);
145 combined = signalInterface.any([combined]);
146 combined = signalInterface.any([combined]);
147 combined = signalInterface.any([combined]);
150 combined.onabort = () => {
155 assert_false(combined.aborted);
160 assert_true(combined
[all...]
/third_party/rust/crates/serde/serde_derive_internals/src/
H A Dctxt.rs49 let mut combined = match errors.next() { in check() variables
55 combined.combine(rest); in check()
58 Err(combined) in check()
/third_party/rust/crates/serde/serde_derive/src/internals/
H A Dctxt.rs49 let mut combined = match errors.next() { in check() variables
55 combined.combine(rest); in check()
58 Err(combined) in check()
/third_party/node/deps/uvwasi/src/
H A Dpath_resolver.c235 char* combined; in uvwasi__normalize_relative_path() local
245 /* The max combined size is the path length + the file descriptor's path in uvwasi__normalize_relative_path()
249 combined = uvwasi__malloc(uvwasi, combined_size); in uvwasi__normalize_relative_path()
250 if (combined == NULL) in uvwasi__normalize_relative_path()
259 r = snprintf(combined, combined_size, "%s/%s", fd->normalized_path, path); in uvwasi__normalize_relative_path()
266 err = uvwasi__normalize_path(combined, in uvwasi__normalize_relative_path()
292 uvwasi__free(uvwasi, combined); in uvwasi__normalize_relative_path()
/third_party/skia/docs/examples/
H A DMatrix_decomposeScale.cpp19 SkMatrix combined = SkMatrix::Concat(scaleMatrix, remaining); in REG_FIDDLE() local
20 combined.dump(); in REG_FIDDLE()
/third_party/glslang/glslang/MachineIndependent/
H A DVersions.cpp1185 TString combined; in requireFloat16Arithmetic() local
1186 combined = op; in requireFloat16Arithmetic()
1187 combined += ": "; in requireFloat16Arithmetic()
1188 combined += featureDesc; in requireFloat16Arithmetic()
1194 requireExtensions(loc, sizeof(extensions)/sizeof(extensions[0]), extensions, combined.c_str()); in requireFloat16Arithmetic()
1199 TString combined; in requireInt16Arithmetic() local
1200 combined = op; in requireInt16Arithmetic()
1201 combined += ": "; in requireInt16Arithmetic()
1202 combined += featureDesc; in requireInt16Arithmetic()
1208 requireExtensions(loc, sizeof(extensions)/sizeof(extensions[0]), extensions, combined in requireInt16Arithmetic()
1213 TString combined; requireInt8Arithmetic() local
[all...]
/third_party/libbpf/include/uapi/linux/
H A Dpkt_cls.h54 * a combined opcode.
59 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK))
60 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dvalidity.py71 combined = _fix_a_vs_an(' '.join(parts))
72 if combined in self.lines:
74 self.lines.append(combined)
/third_party/mesa3d/src/compiler/glsl/glcpp/
H A Dglcpp-parse.y1321 token_t *combined = NULL;
1331 /* A very few single-character punctuators can be combined
1336 combined = _token_create_ival (parser, LEFT_SHIFT, LEFT_SHIFT);
1338 combined = _token_create_ival (parser, LESS_OR_EQUAL, LESS_OR_EQUAL);
1342 combined = _token_create_ival (parser, RIGHT_SHIFT, RIGHT_SHIFT);
1344 combined = _token_create_ival (parser, GREATER_OR_EQUAL, GREATER_OR_EQUAL);
1348 combined = _token_create_ival (parser, EQUAL, EQUAL);
1352 combined = _token_create_ival (parser, NOT_EQUAL, NOT_EQUAL);
1356 combined = _token_create_ival (parser, AND, AND);
1360 combined
[all...]
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/
H A Dcommon.js304 const combined = new sourceHelpers.ParsedSource(
306 // If any input file is sloppy, the combined result is sloppy.
307 combined.sloppy = inputs.some(input => input.isSloppy());
308 return combined;
/third_party/skia/src/core/
H A DSkPictureRecord.h26 #define UNPACK_8_24(combined, small, large) \
27 small = (combined >> 24) & 0xFF; \
28 large = combined & MASK_24
/third_party/rust/crates/nix/src/
H A Dsched.rs110 let combined = flags.bits() | signal.unwrap_or(0); in clone()
119 combined, in clone()
/third_party/python/Objects/
H A Dcomplexobject.c408 Py_uhash_t hashreal, hashimag, combined; in complex_hash() local
421 combined = hashreal + _PyHASH_IMAG * hashimag; in complex_hash()
422 if (combined == (Py_uhash_t)-1) in complex_hash()
423 combined = (Py_uhash_t)-2; in complex_hash()
424 return (Py_hash_t)combined; in complex_hash()
/third_party/skia/src/sksl/ir/
H A DSkSLSwizzle.cpp198 // This can't be combined with the previous argument. Add a new one. in optimize_constructor_swizzle()
478 ComponentArray combined; in Make() local
480 combined.push_back(base.components()[c]); in Make()
485 return Swizzle::Make(context, std::move(base.base()), combined); in Make()
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/aes/
H A Daes-armv4.S23 @ in one instruction and emit combined result every cycle. The module
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/aes/
H A Daes-armv4.S23 @ in one instruction and emit combined result every cycle. The module
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dprotostream_objectsource.cc682 std::string combined; in RenderFieldMask() local
701 if (!combined.empty()) { in RenderFieldMask()
702 combined.append(","); in RenderFieldMask()
704 combined.append(ConvertFieldMaskPath(str, &ToCamelCase)); in RenderFieldMask()
706 ow->RenderString(field_name, combined); in RenderFieldMask()

Completed in 19 milliseconds

123