/third_party/mesa3d/src/asahi/compiler/ |
D | agx_opcodes.py | 29 def __init__(self, name, dests, srcs, imms, is_float, can_eliminate, encoding_16, encoding_32): argument 31 self.dests = dests 60 def op(name, encoding_32, dests = 1, srcs = 0, imms = [], is_float = False, can_eliminate = True, e… argument 64 … opcodes[name] = Opcode(name, dests, srcs, imms, is_float, can_eliminate, encoding_16, encoding_32) 205 op("wait", (0x38, 0xFF, 2, _), dests = 0, 208 op("get_sr", (0x72, 0x7F | L, 4, _), dests = 1, imms = [SR]) 210 op("sample_mask", (0x7fc1, 0xffff, 6, _), dests = 0, srcs = 1, can_eliminate = False) 213 op("ld_tile", (0x49, 0x7F, 8, _), dests = 1, srcs = 0, 216 op("st_tile", (0x09, 0x7F, 8, _), dests = 0, srcs = 1, 220 op("jmp_exec_" + name, (exact, (1 << 16) - 1, 6, _), dests = 0, srcs = 0, [all …]
|
D | agx_compile.c | 144 agx_emit_split(agx_builder *b, agx_index *dests, agx_index vec, unsigned n) in agx_emit_split() argument 148 dests[i] = agx_temp(b->shader, vec.size); in agx_emit_split() 152 agx_p_split_to(b, dests[0], dests[1], dests[2], dests[3], vec); in agx_emit_split() 158 agx_index dests[4] = { agx_null(), agx_null(), agx_null(), agx_null() }; in agx_emit_cached_split() local 159 agx_emit_split(b, dests, vec, n); in agx_emit_cached_split() 160 agx_cache_combine(b, vec, dests[0], dests[1], dests[2], dests[3]); in agx_emit_cached_split() 222 agx_emit_load_attr(agx_builder *b, agx_index *dests, nir_intrinsic_instr *instr) in agx_emit_load_attr() argument 265 agx_emit_split(b, dests, vec, actual_comps); in agx_emit_load_attr() 272 dests[i] = default_value[i]; in agx_emit_load_attr() 276 agx_emit_load_vary_flat(agx_builder *b, agx_index *dests, nir_intrinsic_instr *instr) in agx_emit_load_vary_flat() argument [all …]
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_nir_lower_io.c | 200 nir_ssa_def *dests[4]; in vc4_nir_lower_vertex_attr() local 203 dests[i] = vc4_nir_get_vattr_channel_vpm(c, b, vpm_reads, swiz, in vc4_nir_lower_vertex_attr() 206 if (!dests[i]) { in vc4_nir_lower_vertex_attr() 213 dests[i] = nir_imm_float(b, 0.0); in vc4_nir_lower_vertex_attr() 217 replace_intrinsic_with_vec(b, intr, dests); in vc4_nir_lower_vertex_attr() 300 nir_ssa_def *dests[4]; in vc4_nir_lower_uniform() local 322 dests[i] = &intr_comp->dest.ssa; in vc4_nir_lower_uniform() 327 replace_intrinsic_with_vec(b, intr, dests); in vc4_nir_lower_uniform()
|
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
D | valhall.py | 184 …def __init__(self, name, opcode, opcode2, srcs = [], dests = [], immediates = [], modifiers = [], … argument 187 self.dests = dests 218 assert(len(dests) == 0 or not staging) 290 dests = [Dest(dest.text or '') for dest in el.findall('dest')] 294 dests = dests + ([Dest()] * int(el.attrib.get('dests', 0))) 309 …instr = Instruction(name, opcode, opcode2, srcs = sources, dests = dests, immediates = imms, modif…
|
D | asm.py | 172 expected_op_count = len(ins.srcs) + len(ins.dests) + len(ins.immediates) + len(ins.staging) 211 for op, dest in zip(operands, ins.dests): 213 operands = operands[len(ins.dests):] 215 if len(ins.dests) == 0 and len(ins.staging) == 0:
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_instr_lds.cpp | 194 std::vector<PRegister, Allocator<PRegister> > dests; in from_string() local 201 dests.push_back(dst); in from_string() 217 assert(srcs.size() == dests.size() && !dests.empty()); in from_string() 219 return new LDSReadInstr(dests, srcs); in from_string()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/tests/ |
D | sfn_instrfromstring_test.cpp | 588 std::vector<PRegister, Allocator<PRegister>> dests(3); in TEST_F() local 592 dests[i] = new Register(10 + i, 0, pin_free); in TEST_F() 596 LDSReadInstr expect(dests, srcs); in TEST_F() 607 std::vector<PRegister, Allocator<PRegister>> dests(2); in TEST_F() local 611 dests[i] = new Register(11 + i, 0, pin_free); in TEST_F() 615 LDSReadInstr expect(dests, srcs); in TEST_F()
|
/third_party/cups-filters/scripting/php/ |
D | phpcups.c | 240 cups_dest_t *dests, /* Destinations */ in PHP_FUNCTION() local 252 if ((num_dests = cupsGetDests(&dests)) <= 0) in PHP_FUNCTION() 259 for (i = 0, dest = dests; i < num_dests; i ++, dest ++) in PHP_FUNCTION() 296 cupsFreeDests(num_dests, dests); in PHP_FUNCTION()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | itutil.cpp | 131 : checks(countChecks), dests(countDests) {} in MyErrorCode() 134 ++dests; in ~MyErrorCode() 142 int32_t &dests; member in MyErrorCode
|
/third_party/node/deps/npm/node_modules/request/ |
D | request.js | 174 self.dests = self.dests || [] 1053 if (self.dests.length !== 0) { 1068 self.dests.forEach(function (dest) { 1487 self.dests.push(dest)
|
/third_party/node/lib/internal/streams/ |
D | readable.js | 826 const dests = state.pipes; 830 for (let i = 0; i < dests.length; i++) 831 dests[i].emit('unpipe', this, { hasUnpiped: false });
|
/third_party/node/deps/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 674 var dests = state.pipes; 681 dests[i].emit('unpipe', this);
|
/third_party/node/deps/npm/node_modules/concat-stream/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 714 var dests = state.pipes; 721 dests[i].emit('unpipe', this, unpipeInfo);
|
/third_party/node/deps/npm/node_modules/from2/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 714 var dests = state.pipes; 721 dests[i].emit('unpipe', this, unpipeInfo);
|
/third_party/node/deps/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 714 var dests = state.pipes; 721 dests[i].emit('unpipe', this, unpipeInfo);
|
/third_party/node/deps/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 714 var dests = state.pipes; 721 dests[i].emit('unpipe', this, unpipeInfo);
|
/third_party/node/deps/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 714 var dests = state.pipes; 721 dests[i].emit('unpipe', this, unpipeInfo);
|
/third_party/node/deps/npm/node_modules/through2/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 714 var dests = state.pipes; 721 dests[i].emit('unpipe', this, unpipeInfo);
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 777 var dests = state.pipes; 784 dests[i].emit('unpipe', this, {
|
/third_party/node/deps/npm/node_modules/duplexify/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 714 var dests = state.pipes; 721 dests[i].emit('unpipe', this, unpipeInfo);
|
/third_party/node/deps/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 714 var dests = state.pipes; 721 dests[i].emit('unpipe', this, unpipeInfo);
|
/third_party/node/deps/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 714 var dests = state.pipes; 721 dests[i].emit('unpipe', this, unpipeInfo);
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_compiler.c | 1758 nir_ssa_def *dests[4]; in lower_64bit_vars() local 1785 dest = dests[idx] = nir_vec(&b, comp, intr->num_components); in lower_64bit_vars() 1792 dest = nir_if_phi(&b, dests[idx - 1], dest); in lower_64bit_vars() 2983 nir_ssa_def *dests[NIR_MAX_VEC_COMPONENTS]; in split_bitfields_instr() local 2986 dests[i] = nir_bitfield_insert(b, in split_bitfields_instr() 2992 dests[i] = nir_ubitfield_extract(b, in split_bitfields_instr() 2997 dests[i] = nir_ibitfield_extract(b, in split_bitfields_instr() 3002 nir_ssa_def *dest = nir_vec(b, dests, num_components); in split_bitfields_instr()
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_nir_lower_tess.c | 852 copy_vars(nir_builder *b, struct exec_list *dests, struct exec_list *srcs) in copy_vars() argument 854 foreach_two_lists (dest_node, dests, src_node, srcs) { in copy_vars()
|
/third_party/mesa3d/src/panfrost/bifrost/ |
D | bifrost_compile.c | 202 bi_emit_split_i32(bi_builder *b, bi_index dests[4], bi_index vec, unsigned n) in bi_emit_split_i32() 206 dests[i] = bi_temp(b->shader); in bi_emit_split_i32() 211 bi_mov_i32_to(b, dests[0], vec); in bi_emit_split_i32() 213 bi_instr *I = bi_split_i32_to(b, dests[0], vec); in bi_emit_split_i32() 217 I->dest[j] = dests[j]; in bi_emit_split_i32() 224 bi_index dests[4] = { bi_null(), bi_null(), bi_null(), bi_null() }; in bi_emit_cached_split_i32() local 225 bi_emit_split_i32(b, dests, vec, n); in bi_emit_cached_split_i32() 226 bi_cache_collect(b, vec, dests, n); in bi_emit_cached_split_i32()
|