Home
last modified time | relevance | path

Searched full:join (Results 1326 - 1350 of 8037) sorted by relevance

1...<<51525354555657585960>>...322

/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_msl.cpp1025 return join(prefix, "address::clamp_to_edge"); in create_sampler_address()
1027 return join(prefix, "address::clamp_to_zero"); in create_sampler_address()
1029 return join(prefix, "address::clamp_to_border"); in create_sampler_address()
1031 return join(prefix, "address::repeat"); in create_sampler_address()
1033 return join(prefix, "address::mirrored_repeat"); in create_sampler_address()
1205 args.push_back(join("max_anisotropy(", s.max_anisotropy, ")")); in emit_entry_point_declarations()
1208 args.push_back(join("lod_clamp(", convert_to_string(s.lod_clamp_min, current_locale_radix_character), ", ", in emit_entry_point_declarations()
1267 arrays += join("[", indices[i - 1], "]"); in emit_entry_point_declarations()
2166 qual_var_name += join(".interpolate_at_sample(", to_expression(builtin_sample_id_id), ")"); in add_plain_variable_to_interface_block()
2386 string mbr_name = ensure_valid_name(join(to_expressio in add_composite_variable_to_interface_block()
7586 MSL_BOP_CAST(<, uint_type); break; case OpSLessThan: MSL_BOP_CAST(<, int_type); break; case OpFOrdLessThan: MSL_BOP(<); break; case OpULessThanEqual: MSL_BOP_CAST(<=, uint_type); break; case OpSLessThanEqual: MSL_BOP_CAST(<=, int_type); break; case OpFOrdLessThanEqual: MSL_BOP(<=); break; case OpFUnordEqual: MSL_UNORD_BOP(==); break; case OpFUnordNotEqual: MSL_UNORD_BOP(!=); break; case OpFUnordGreaterThan: MSL_UNORD_BOP(>); break; case OpFUnordGreaterThanEqual: MSL_UNORD_BOP(>=); break; case OpFUnordLessThan: MSL_UNORD_BOP(<); break; case OpFUnordLessThanEqual: MSL_UNORD_BOP(<=); break; case OpDPdx: case OpDPdxFine: case OpDPdxCoarse: MSL_UFOP(dfdx); register_control_dependent_expression(ops[1]); break; case OpDPdy: case OpDPdyFine: case OpDPdyCoarse: MSL_UFOP(dfdy); register_control_dependent_expression(ops[1]); break; case OpFwidth: case OpFwidthCoarse: case OpFwidthFine: MSL_UFOP(fwidth); register_control_dependent_expression(ops[1]); break; case OpBitFieldInsert: { emit_bitfield_insert_op(ops[0], ops[1], ops[2], ops[3], ops[4], ops[5], �, SPIRType::UInt); break; } case OpBitFieldSExtract: { emit_trinary_func_op_bitextract(ops[0], ops[1], ops[2], ops[3], ops[4], �, int_type, int_type, SPIRType::UInt, SPIRType::UInt); break; } case OpBitFieldUExtract: { emit_trinary_func_op_bitextract(ops[0], ops[1], ops[2], ops[3], ops[4], �, uint_type, uint_type, SPIRType::UInt, SPIRType::UInt); break; } case OpBitReverse: MSL_UFOP(reverse_bits); break; case OpBitCount: { auto basetype = expression_type(ops[2]).basetype; emit_unary_func_op_cast(ops[0], ops[1], ops[2], �, basetype, basetype); break; } case OpFRem: MSL_BFOP(fmod); break; case OpFMul: if (msl_options.invariant_float_math || has_decoration(ops[1], DecorationNoContraction)) MSL_BFOP(spvFMul); else MSL_BOP(*); break; case OpFAdd: if (msl_options.invariant_float_math || has_decoration(ops[1], DecorationNoContraction)) MSL_BFOP(spvFAdd); else MSL_BOP(+); break; case OpFSub: if (msl_options.invariant_float_math || has_decoration(ops[1], DecorationNoContraction)) MSL_BFOP(spvFSub); else MSL_BOP(-); break; case OpAtomicExchange: { uint32_t result_type = ops[0]; uint32_t id = ops[1]; uint32_t ptr = ops[2]; uint32_t mem_sem = ops[4]; uint32_t val = ops[5]; emit_atomic_func_op(result_type, id, �, mem_sem, mem_sem, false, ptr, val); break; } case OpAtomicCompareExchange: { uint32_t result_type = ops[0]; uint32_t id = ops[1]; uint32_t ptr = ops[2]; uint32_t mem_sem_pass = ops[4]; uint32_t mem_sem_fail = ops[5]; uint32_t val = ops[6]; uint32_t comp = ops[7]; emit_atomic_func_op(result_type, id, �, mem_sem_pass, mem_sem_fail, true, ptr, comp, true, false, val); break; } case OpAtomicCompareExchangeWeak: SPIRV_CROSS_THROW(�); case OpAtomicLoad: { uint32_t result_type = ops[0]; uint32_t id = ops[1]; uint32_t ptr = ops[2]; uint32_t mem_sem = ops[4]; emit_atomic_func_op(result_type, id, �, mem_sem, mem_sem, false, ptr, 0); break; } case OpAtomicStore: { uint32_t result_type = expression_type(ops[0]).self; uint32_t id = ops[0]; uint32_t ptr = ops[0]; uint32_t mem_sem = ops[2]; uint32_t val = ops[3]; emit_atomic_func_op(result_type, id, �, mem_sem, mem_sem, false, ptr, val); break; } case OpAtomicIIncrement: MSL_AFMIO(add); break; case OpAtomicIDecrement: MSL_AFMIO(sub); break; case OpAtomicIAdd: MSL_AFMO(add); break; case OpAtomicISub: MSL_AFMO(sub); break; case OpAtomicSMin: case OpAtomicUMin: MSL_AFMO(min); break; case OpAtomicSMax: case OpAtomicUMax: MSL_AFMO(max); break; case OpAtomicAnd: MSL_AFMO(and); break; case OpAtomicOr: MSL_AFMO(or); break; case OpAtomicXor: MSL_AFMO(xor); break; case OpImageRead: { uint32_t img_id = ops[2]; auto &type = expression_type(img_id); if (type.image.dim != DimSubpassData) { auto *p_var = maybe_get_backing_variable(img_id); if (p_var && has_decoration(p_var->self, DecorationNonReadable)) { unset_decoration(p_var->self, DecorationNonReadable); force_recompile(); } } emit_texture_op(instruction, false); break; } case OpImageTexelPointer: { auto *var = maybe_get_backing_variable(ops[2]); if (var && atomic_image_vars.count(var->self)) { uint32_t result_type = ops[0]; uint32_t id = ops[1]; std::string coord = to_expression(ops[3]); auto &type = expression_type(ops[2]); if (type.image.dim == Dim2D) { coord = join(�, coord, �, to_expression(ops[2]), �); } auto &e = set<SPIRExpression>(id, join(to_expression(ops[2]), �, coord, �), result_type, true); e.loaded_from = var ? var->self : ID(0); inherit_expression_dependencies(id, ops[3]); } else { uint32_t result_type = ops[0]; uint32_t id = ops[1]; auto &e = set<SPIRExpression>(id, join(to_expression(ops[2]), �, to_expression(ops[3])), result_type, true); e.loaded_from = var ? var->self : ID(0); inherit_expression_dependencies(id, ops[3]); } break; } case OpImageWrite: { uint32_t img_id = ops[0]; uint32_t coord_id = ops[1]; uint32_t texel_id = ops[2]; const uint32_t *opt = &ops[3]; uint32_t length = instruction.length - 3; auto &type = expression_type(img_id); auto &img_type = get<SPIRType>(type.self); auto *p_var = maybe_get_backing_variable(img_id); if (p_var && has_decoration(p_var->self, DecorationNonWritable) emit_instruction() argument
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/app/demo/
H A DSConscript37 objs += env.SConscript(os.path.join(src, 'SConscript'), {'env':env}, variant_dir = os.path.join('#', obj_path, module_path, src), duplicate = 0)
/device/soc/hisilicon/hi3861v100/sdk_liteos/tools/menuconfig/
H A Dusr_config.py34 kconfig = os.path.join("tools", "menuconfig", "Kconfig")
36 target_conf = os.path.join("build", "config", "usr_config.mk")
/foundation/ability/idl_tool/test/sa_test/
H A Dcmd_save_metadata.py29 metadata_path = os.path.join(self.working_dir, "metadata.file")
35 metadata_path = os.path.join(self.working_dir, "metadata.file")
/foundation/ability/idl_tool/test/hdi_unittest/hdi_gen_test/
H A Dhdi_compile_opt_test_02.py29 package_path = os.path.join(work_dir, "foo")
30 idl_dir = os.path.join(package_path, "v1_0")
H A Dhdi_compile_opt_test_01.py29 package_path = os.path.join(work_dir, "foo")
30 idl_dir = os.path.join(package_path, "v1_0")
/foundation/multimedia/media_library/frameworks/services/media_backup_extension/include/restore/
H A Dtab_old_photos_restore.h47 INNER JOIN \
54 LEFT JOIN tab_old_photos \
/test/testfwk/xdevice/src/xdevice/_core/context/
H A Dlog.py36 tool_log_file = os.path.join(log_path, tool_file_name)
43 encrypt_log_file = os.path.join(log_path, encrypt_file_name)
/test/testfwk/xdevice/src/xdevice/_core/report/
H A D__init__.py22 sys.path.insert(0, os.path.join(
24 sys.path.insert(1, os.path.join(os.path.dirname(
/third_party/icu/vendor/double-conversion/upstream/
H A DSConstruct10 libdir = os.path.join(DESTDIR + prefix, lib)
27 env.Append(CCFLAGS = " ".join(CCFLAGS))
/third_party/json/tools/generate_natvis/
H A Dgenerate_natvis.py30 ns = abi_prefix + ''.join(tags)
40 with open(os.path.join(args.output, 'nlohmann_json.natvis'), 'w') as f:
/third_party/node/deps/v8/tools/
H A Dgc-nvp-to-csv.py26 print(', '.join(keys))
28 print(', '.join(map(lambda key: str(entry[key]), keys)))
/third_party/node/deps/v8/tools/unittests/testdata/testroot2/
H A Dd8_mocked.py17 print(' '.join(sys.argv[1:]))
24 flake_state = os.path.join(PATH, arg)
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/tools/
H A Dminimize.py22 OUT_PATH = os.path.join(BASE_PATH, 'out.js')
23 FAILURES_JSON_PATH = os.path.join(
/third_party/node/deps/v8/tools/unittests/
H A Dpredictable_wrapper_test.py14 PREDICTABLE_WRAPPER = os.path.join(
17 PREDICTABLE_MOCKED = os.path.join(
/third_party/node/test/node-api/test_general/
H A Dtest.js22 const urlTestDir = path.join(tmpdir.path, 'foo%#bar');
23 const urlTestFile = path.join(urlTestDir, path.basename(filename));
/third_party/node/test/parallel/
H A Dtest-fs-copyfile-respect-permissions.js25 const source = path.join(tmpdir.path, `source${n}`);
26 const dest = path.join(tmpdir.path, `dest${n}`);
H A Dtest-fs-link.js11 const srcPath = path.join(tmpdir.path, 'hardlink-target.txt');
12 const dstPath = path.join(tmpdir.path, 'link1.js');
H A Dtest-fs-mkdir-mode-mask.js27 const dir = path.join(tmpdir.path, `mkdirSync-${suffix}`);
33 const dir = path.join(tmpdir.path, `mkdir-${suffix}`);
H A Dtest-fs-open-mode-mask.js23 const file = path.join(tmpdir.path, `openSync-${suffix}.txt`);
31 const file = path.join(tmpdir.path, `open-${suffix}.txt`);
H A Dtest-fs-watch-recursive.js18 const relativePathOne = path.join(path.basename(testsubdir), filenameOne);
19 const filepathOne = path.join(testsubdir, filenameOne);
H A Dtest-fs-write-file-invalid-path.js21 const pathname = path.join(tmpdir.path, `somefile_${ch}`);
32 const pathname = path.join(tmpdir.path, 'foo:bar');
H A Dtest-fs-write-stream-fs.js10 const file = path.join(tmpdir.path, 'write-end-test0.txt');
24 const file = path.join(tmpdir.path, 'write-end-test1.txt');
H A Dtest-heap-prof-dir-name.js26 const dir = path.join(tmpdir.path, 'prof');
27 const file = path.join(dir, 'test.heapprofile');
H A Dtest-snapshot-console.js16 const blobPath = path.join(tmpdir.path, 'snapshot.blob');
35 const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob'));

Completed in 12 milliseconds

1...<<51525354555657585960>>...322