/third_party/typescript/tests/baselines/reference/ |
H A D | indirectTypeParameterReferences.js | 9 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 D | genericFunctionInference2.js | 7 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 D | update-compile-commands.py | 60 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...] |
/kernel/linux/linux-5.10/net/core/ |
H A D | secure_seq.c | 62 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcpv6_ts_off() 71 return siphash(&combined, offsetofend(typeof(combined), daddr), in secure_tcpv6_ts_off() 84 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcpv6_seq() 93 hash = siphash(&combined, offsetofend(typeof(combined), dport), in secure_tcpv6_seq() 107 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_ipv6_port_ephemeral() 114 return siphash(&combined, offsetofend(typeof(combined), dport), in secure_ipv6_port_ephemeral() 184 } __aligned(SIPHASH_ALIGNMENT) combined in secure_dccpv6_sequence_number() [all...] |
/kernel/linux/linux-6.6/net/core/ |
H A D | secure_seq.c | 62 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcpv6_ts_off() 71 return siphash(&combined, offsetofend(typeof(combined), daddr), in secure_tcpv6_ts_off() 84 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcpv6_seq() 93 hash = siphash(&combined, offsetofend(typeof(combined), dport), in secure_tcpv6_seq() 107 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_ipv6_port_ephemeral() 114 return siphash(&combined, offsetofend(typeof(combined), dport), in secure_ipv6_port_ephemeral() 184 } __aligned(SIPHASH_ALIGNMENT) combined in secure_dccpv6_sequence_number() [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
H A D | PipelineGL.cpp | 88 // 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 D | ShaderModuleGL.cpp | 312 // 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 D | lima_nir_lower_txp.c | 121 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()
|
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/net/netdevsim/ |
H A D | tc-mq-visibility.sh | 40 ethtool -L $NDEV combined $n 47 ethtool -L $NDEV combined $n 55 ethtool -L $NDEV combined 1 58 ethtool -L $NDEV combined 4 65 ethtool -L $NDEV combined 1
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | gen-indic-table.py | 74 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 D | gen-use-table.py | 106 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 D | abort-signal-any-tests.js | 144 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...] |
/kernel/linux/linux-5.10/lib/ |
H A D | siphash.c | 219 u64 combined = (u64)second << 32 | first; in siphash_3u32() local 221 v3 ^= combined; in siphash_3u32() 224 v0 ^= combined; in siphash_3u32() 333 u64 combined = (u64)second << 32 | first; in hsiphash_2u32() local 335 v3 ^= combined; in hsiphash_2u32() 337 v0 ^= combined; in hsiphash_2u32() 352 u64 combined = (u64)second << 32 | first; in hsiphash_3u32() local 354 v3 ^= combined; in hsiphash_3u32() 356 v0 ^= combined; in hsiphash_3u32() 373 u64 combined in hsiphash_4u32() local [all...] |
/kernel/linux/linux-6.6/lib/ |
H A D | siphash.c | 218 u64 combined = (u64)second << 32 | first; in siphash_3u32() local 220 v3 ^= combined; in siphash_3u32() 223 v0 ^= combined; in siphash_3u32() 332 u64 combined = (u64)second << 32 | first; in hsiphash_2u32() local 334 v3 ^= combined; in hsiphash_2u32() 336 v0 ^= combined; in hsiphash_2u32() 351 u64 combined = (u64)second << 32 | first; in hsiphash_3u32() local 353 v3 ^= combined; in hsiphash_3u32() 355 v0 ^= combined; in hsiphash_3u32() 372 u64 combined in hsiphash_4u32() local [all...] |
/third_party/rust/crates/serde/serde_derive_internals/src/ |
H A D | ctxt.rs | 49 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 D | ctxt.rs | 49 let mut combined = match errors.next() { in check() variables 55 combined.combine(rest); in check() 58 Err(combined) in check()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/amd/xgbe/ |
H A D | xgbe-ethtool.c | 692 unsigned int rx, tx, combined; in xgbe_get_channels() local 706 combined = min(rx, tx); in xgbe_get_channels() 708 channels->max_combined = combined; in xgbe_get_channels() 716 combined = min(rx, tx); in xgbe_get_channels() 717 rx -= combined; in xgbe_get_channels() 718 tx -= combined; in xgbe_get_channels() 720 channels->combined_count = combined; in xgbe_get_channels() 728 netdev_err(netdev, "channel inputs: combined=%u, rx-only=%u, tx-only=%u\n", in xgbe_print_set_channels_input() 737 unsigned int rx, rx_curr, tx, tx_curr, combined; in xgbe_set_channels() local 751 combined in xgbe_set_channels() [all...] |
/third_party/node/deps/uvwasi/src/ |
H A D | path_resolver.c | 235 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 D | Matrix_decomposeScale.cpp | 19 SkMatrix combined = SkMatrix::Concat(scaleMatrix, remaining); in REG_FIDDLE() local 20 combined.dump(); in REG_FIDDLE()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/amd/xgbe/ |
H A D | xgbe-ethtool.c | 699 unsigned int rx, tx, combined; in xgbe_get_channels() local 713 combined = min(rx, tx); in xgbe_get_channels() 715 channels->max_combined = combined; in xgbe_get_channels() 723 combined = min(rx, tx); in xgbe_get_channels() 724 rx -= combined; in xgbe_get_channels() 725 tx -= combined; in xgbe_get_channels() 727 channels->combined_count = combined; in xgbe_get_channels() 735 netdev_err(netdev, "channel inputs: combined=%u, rx-only=%u, tx-only=%u\n", in xgbe_print_set_channels_input() 744 unsigned int rx, rx_curr, tx, tx_curr, combined; in xgbe_set_channels() local 758 combined in xgbe_set_channels() [all...] |
/third_party/glslang/glslang/MachineIndependent/ |
H A D | Versions.cpp | 1185 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...] |
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nf_conntrack_expect.c | 90 } __aligned(SIPHASH_ALIGNMENT) combined; in nf_ct_expect_dst_hash() 95 memset(&combined, 0, sizeof(combined)); in nf_ct_expect_dst_hash() 97 combined.dst_addr = tuple->dst.u3; in nf_ct_expect_dst_hash() 98 combined.net_mix = net_hash_mix(n); in nf_ct_expect_dst_hash() 99 combined.dport = (__force __u16)tuple->dst.u.all; in nf_ct_expect_dst_hash() 100 combined.l3num = tuple->src.l3num; in nf_ct_expect_dst_hash() 101 combined.protonum = tuple->dst.protonum; in nf_ct_expect_dst_hash() 103 hash = siphash(&combined, sizeof(combined), in nf_ct_expect_dst_hash() [all...] |
/kernel/linux/common_modules/newip/third_party/linux-5.10/net/newip/ |
H A D | ninet_hashtables.c | 77 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcp_nip_sequence_number() 86 hash = siphash(&combined, offsetofend(typeof(combined), dport), in secure_tcp_nip_sequence_number() 99 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_newip_port_ephemeral() 105 return siphash(&combined, offsetofend(typeof(combined), dport), in secure_newip_port_ephemeral()
|
/kernel/linux/linux-5.10/tools/include/uapi/linux/ |
H A D | pkt_cls.h | 54 * 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)
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
H A D | pkt_cls.h | 81 * a combined opcode. 86 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) 87 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
|