Home
last modified time | relevance | path

Searched refs:idx1 (Results 1 – 25 of 69) sorted by relevance

123

/third_party/skia/third_party/externals/brotli/c/enc/
Dcluster_inc.h15 const HistogramType* out, const uint32_t* cluster_size, uint32_t idx1,
20 p.idx1 = p.idx2 = 0;
22 if (idx1 == idx2) {
25 if (idx2 < idx1) {
27 idx2 = idx1;
28 idx1 = t;
30 p.idx1 = idx1;
32 p.cost_diff = 0.5 * ClusterCostDiff(cluster_size[idx1], cluster_size[idx2]);
33 p.cost_diff -= out[idx1].bit_cost_;
36 if (out[idx1].total_count_ == 0) {
[all …]
/third_party/node/deps/brotli/c/enc/
Dcluster_inc.h15 const HistogramType* out, const uint32_t* cluster_size, uint32_t idx1,
20 p.idx1 = p.idx2 = 0;
22 if (idx1 == idx2) {
25 if (idx2 < idx1) {
27 idx2 = idx1;
28 idx1 = t;
30 p.idx1 = idx1;
32 p.cost_diff = 0.5 * ClusterCostDiff(cluster_size[idx1], cluster_size[idx2]);
33 p.cost_diff -= out[idx1].bit_cost_;
36 if (out[idx1].total_count_ == 0) {
[all …]
/third_party/mesa3d/src/amd/vulkan/radix_sort/shaders/
Dprefix.h177 const uint32_t idx1 = (ii * RS_WORKGROUP_SUBGROUPS) + gl_SubgroupID; in rs_prefix()
183 RS_PREFIX_SWEEP1(idx1) = subgroupBroadcast(h0_inc, RS_SUBGROUP_SIZE - 1); in rs_prefix()
223 const uint32_t idx1 = (ii * RS_WORKGROUP_SUBGROUPS) + gl_SubgroupID; in rs_prefix()
229 RS_PREFIX_SWEEP1(idx1) = subgroupBroadcast(h0_inc, RS_SUBGROUP_SIZE - 1); in rs_prefix()
252 const uint32_t idx1 = (ii * RS_WORKGROUP_SIZE) + gl_LocalInvocationID.x; in rs_prefix()
255 const uint32_t h1_red = RS_PREFIX_SWEEP1(idx1); in rs_prefix()
258 RS_PREFIX_SWEEP1(idx1) = h1_inc - h1_red; in rs_prefix()
310 const uint32_t idx1 = idx0 / RS_SUBGROUP_SIZE; in rs_prefix()
314 h_exc[ii] + RS_PREFIX_SWEEP0(idx0) + RS_PREFIX_SWEEP1(idx1); in rs_prefix()
319 h_exc + RS_PREFIX_SWEEP0(idx0) + RS_PREFIX_SWEEP1(idx1); in rs_prefix()
[all …]
/third_party/typescript/tests/baselines/reference/
DindexerWithTuple.js9 var idx1 = 1; variable
14 var ele14 = strNumTuple[idx1]; // string | number
23 var eleUnion14 = unionTuple1[idx1]; // string | number
31 var eleUnion24 = unionTuple2[idx1]; // string | number | boolean
42 var idx1 = 1;
47 var ele14 = strNumTuple[idx1]; // string | number
56 var eleUnion14 = unionTuple1[idx1]; // string | number
63 var eleUnion24 = unionTuple2[idx1]; // string | number | boolean
DindexerWithTuple.types33 var idx1 = 1;
34 >idx1 : number
61 var ele14 = strNumTuple[idx1]; // string | number
63 >strNumTuple[idx1] : string | number
65 >idx1 : number
115 var eleUnion14 = unionTuple1[idx1]; // string | number
117 >unionTuple1[idx1] : string | number
119 >idx1 : number
157 var eleUnion24 = unionTuple2[idx1]; // string | number | boolean
159 >unionTuple2[idx1] : string | number | boolean
[all …]
DindexerWithTuple.symbols18 var idx1 = 1;
19 >idx1 : Symbol(idx1, Decl(indexerWithTuple.ts, 7, 3))
40 var ele14 = strNumTuple[idx1]; // string | number
43 >idx1 : Symbol(idx1, Decl(indexerWithTuple.ts, 7, 3))
83 var eleUnion14 = unionTuple1[idx1]; // string | number
86 >idx1 : Symbol(idx1, Decl(indexerWithTuple.ts, 7, 3))
117 var eleUnion24 = unionTuple2[idx1]; // string | number | boolean
120 >idx1 : Symbol(idx1, Decl(indexerWithTuple.ts, 7, 3))
DindexerWithTuple.errors.txt15 var idx1 = 1;
22 var ele14 = strNumTuple[idx1]; // string | number
35 var eleUnion14 = unionTuple1[idx1]; // string | number
45 var eleUnion24 = unionTuple2[idx1]; // string | number | boolean
/third_party/ffmpeg/libavcodec/mips/
Dvp9dsp_init_mips.c85 #define init_fpel(idx1, idx2, sz, type) \ in vp9dsp_mc_init_msa() argument
86 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = ff_##type##sz##_msa; \ in vp9dsp_mc_init_msa()
87 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = ff_##type##sz##_msa; \ in vp9dsp_mc_init_msa()
88 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][0][0] = ff_##type##sz##_msa; \ in vp9dsp_mc_init_msa()
89 dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = ff_##type##sz##_msa in vp9dsp_mc_init_msa()
108 #define init_subpel1(idx1, idx2, idxh, idxv, sz, dir, type) \ in vp9dsp_mc_init_msa() argument
109 dsp->mc[idx1][FILTER_BILINEAR ][idx2][idxh][idxv] = \ in vp9dsp_mc_init_msa()
111 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][idxh][idxv] = \ in vp9dsp_mc_init_msa()
113 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][idxh][idxv] = \ in vp9dsp_mc_init_msa()
115 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][idxh][idxv] = \ in vp9dsp_mc_init_msa()
[all …]
/third_party/skia/third_party/externals/libwebp/src/enc/
Dhistogram_enc.c732 int idx1; member
803 VP8LHistogram** const histograms, int idx1, in HistoQueuePush() argument
812 if (idx1 > idx2) { in HistoQueuePush()
814 idx2 = idx1; in HistoQueuePush()
815 idx1 = tmp; in HistoQueuePush()
817 pair.idx1 = idx1; in HistoQueuePush()
819 h1 = histograms[idx1]; in HistoQueuePush()
867 const int idx1 = histo_queue.queue[0].idx1; in HistogramCombineGreedy() local
869 HistogramAdd(histograms[idx2], histograms[idx1], histograms[idx1]); in HistogramCombineGreedy()
870 histograms[idx1]->bit_cost_ = histo_queue.queue[0].cost_combo; in HistogramCombineGreedy()
[all …]
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/
Dhistogram_enc.c731 int idx1; member
802 VP8LHistogram** const histograms, int idx1, in HistoQueuePush() argument
811 if (idx1 > idx2) { in HistoQueuePush()
813 idx2 = idx1; in HistoQueuePush()
814 idx1 = tmp; in HistoQueuePush()
816 pair.idx1 = idx1; in HistoQueuePush()
818 h1 = histograms[idx1]; in HistoQueuePush()
866 const int idx1 = histo_queue.queue[0].idx1; in HistogramCombineGreedy() local
868 HistogramAdd(histograms[idx2], histograms[idx1], histograms[idx1]); in HistogramCombineGreedy()
869 histograms[idx1]->bit_cost_ = histo_queue.queue[0].cost_combo; in HistogramCombineGreedy()
[all …]
/third_party/ffmpeg/libavcodec/arm/
Dvp9dsp_init_16bpp_arm_template.c106 #define init_fpel(idx1, idx2, sz, type, suffix) \ in vp9dsp_mc_init_arm() argument
107 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = \ in vp9dsp_mc_init_arm()
108 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = \ in vp9dsp_mc_init_arm()
109 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][0][0] = \ in vp9dsp_mc_init_arm()
110 dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = ff_vp9_##type##sz##suffix##_neon in vp9dsp_mc_init_arm()
116 #define init_mc_func(idx1, idx2, op, filter, fname, dir, mx, my, sz, pfx, bpp) \ in vp9dsp_mc_init_arm() argument
117 dsp->mc[idx1][filter][idx2][mx][my] = pfx##op##_##fname##sz##_##dir##_##bpp##_neon in vp9dsp_mc_init_arm()
215 #define init_lpf_func_8(idx1, idx2, dir, wd, bpp) \ in vp9dsp_loopfilter_init_arm() argument
216 dsp->loop_filter_8[idx1][idx2] = ff_vp9_loop_filter_##dir##_##wd##_8_##bpp##_neon in vp9dsp_loopfilter_init_arm()
221 #define init_lpf_func_mix2(idx1, idx2, idx3, dir, wd, bpp) \ in vp9dsp_loopfilter_init_arm() argument
[all …]
Dvp9dsp_init_arm.c105 #define init_fpel(idx1, idx2, sz, type) \ in vp9dsp_mc_init_arm() argument
106 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = \ in vp9dsp_mc_init_arm()
107 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = \ in vp9dsp_mc_init_arm()
108 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][0][0] = \ in vp9dsp_mc_init_arm()
109 dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = ff_vp9_##type##sz##_neon in vp9dsp_mc_init_arm()
115 #define init_mc_func(idx1, idx2, op, filter, fname, dir, mx, my, sz, pfx) \ in vp9dsp_mc_init_arm() argument
116 dsp->mc[idx1][filter][idx2][mx][my] = pfx##op##_##fname##sz##_##dir##_neon in vp9dsp_mc_init_arm()
/third_party/ffmpeg/libavcodec/aarch64/
Dvp9dsp_init_16bpp_aarch64_template.c108 #define init_fpel(idx1, idx2, sz, type, suffix) \ in vp9dsp_mc_init_aarch64() argument
109 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = \ in vp9dsp_mc_init_aarch64()
110 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = \ in vp9dsp_mc_init_aarch64()
111 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][0][0] = \ in vp9dsp_mc_init_aarch64()
112 dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = ff_vp9_##type##sz##suffix in vp9dsp_mc_init_aarch64()
131 #define init_mc_func(idx1, idx2, op, filter, fname, dir, mx, my, sz, pfx, bpp) \ in vp9dsp_mc_init_aarch64() argument
132 dsp->mc[idx1][filter][idx2][mx][my] = pfx##op##_##fname##sz##_##dir##_##bpp##_neon in vp9dsp_mc_init_aarch64()
231 #define init_lpf_func_8(idx1, idx2, dir, wd, bpp) \ in vp9dsp_loopfilter_init_aarch64() argument
232 dsp->loop_filter_8[idx1][idx2] = ff_vp9_loop_filter_##dir##_##wd##_8_##bpp##_neon in vp9dsp_loopfilter_init_aarch64()
237 #define init_lpf_func_mix2(idx1, idx2, idx3, dir, wd, bpp) \ in vp9dsp_loopfilter_init_aarch64() argument
[all …]
Dvp9dsp_init_aarch64.c106 #define init_fpel(idx1, idx2, sz, type, suffix) \ in vp9dsp_mc_init_aarch64() argument
107 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = \ in vp9dsp_mc_init_aarch64()
108 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = \ in vp9dsp_mc_init_aarch64()
109 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][0][0] = \ in vp9dsp_mc_init_aarch64()
110 dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = ff_vp9_##type##sz##suffix in vp9dsp_mc_init_aarch64()
128 #define init_mc_func(idx1, idx2, op, filter, fname, dir, mx, my, sz, pfx) \ in vp9dsp_mc_init_aarch64() argument
129 dsp->mc[idx1][filter][idx2][mx][my] = pfx##op##_##fname##sz##_##dir##_neon in vp9dsp_mc_init_aarch64()
Dvp9mc_neon.S222 .macro do_8tap_h type, size, idx1, idx2
223 function \type\()_8tap_\size\()h_\idx1\idx2
277 extmla v1, v2, v24, v25, v4, v5, v6, v16, v17, v18, \idx1, \size
433 .macro convolve dst1, dst2, src1, src2, src3, src4, src5, src6, src7, src8, src9, idx1, idx2, tmp1,…
440 .if \idx1 == 3
484 .macro do_8tap_8v type, idx1, idx2
485 function \type\()_8tap_8v_\idx1\idx2
500 convolve v1, v2, v17, v18, v19, v20, v21, v22, v23, v24, v25, \idx1, \idx2, v5, v6
501 convolve v3, v4, v19, v20, v21, v22, v23, v24, v25, v26, v27, \idx1, \idx2, v5, v6
508 convolve v1, v2, v21, v22, v23, v24, v25, v26, v27, v16, v17, \idx1, \idx2, v5, v6
[all …]
/third_party/jerryscript/tests/jerry/es2015/
Dregression-test-issue-3665.js15 var idx1 = 32.6; variable
17 var obj = { [idx1] : { [idx2] : {}}};
18 ([obj[idx1][idx2]] = [5.7]);
20 assert (obj[idx1][idx2] === 5.7);
/third_party/ffmpeg/libavcodec/x86/
Dvp9dsp_init.h142 #define init_fpel_func(idx1, idx2, sz, type, bpp, opt) \ argument
143 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = \
144 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = \
145 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][0][0] = \
146 dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = ff_vp9_##type##sz##bpp##_##opt
148 #define init_subpel1(idx1, idx2, idxh, idxv, sz, dir, type, bpp, opt) \ argument
149 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][idxh][idxv] = \
151 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][idxh][idxv] = \
153 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][idxh][idxv] = \
156 #define init_subpel2(idx1, idx2, sz, type, bpp, opt) \ argument
[all …]
/third_party/typescript/tests/cases/conformance/types/tuple/
DindexerWithTuple.ts8 var idx1 = 1; variable
13 var ele14 = strNumTuple[idx1]; // string | number variable
22 var eleUnion14 = unionTuple1[idx1]; // string | number variable
30 var eleUnion24 = unionTuple2[idx1]; // string | number | boolean variable
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dtest_vector_ops_ll.ll4 i32 1, label %idx1
11 idx1:
29 i32 1, label %idx1
37 idx1:
58 i32 1, label %idx1
70 idx1:
107 i32 1, label %idx1
127 idx1:
196 i32 1, label %idx1
203 idx1:
[all …]
/third_party/skia/third_party/externals/tint/fuzzers/tint_regex_fuzzer/
Dwgsl_mutator.cc175 void SwapIntervals(size_t idx1, in SwapIntervals() argument
180 std::string region_1 = wgsl_code.substr(idx1 + 1, reg1_len - 1); in SwapIntervals()
187 wgsl_code.replace(idx1 + 1, region_1.size(), region_2); in SwapIntervals()
190 void DeleteInterval(size_t idx1, size_t reg_len, std::string& wgsl_code) { in DeleteInterval() argument
191 wgsl_code.erase(idx1 + 1, reg_len - 1); in DeleteInterval()
194 void DuplicateInterval(size_t idx1, in DuplicateInterval() argument
198 std::string region = wgsl_code.substr(idx1 + 1, reg1_len - 1); in DuplicateInterval()
202 void ReplaceRegion(size_t idx1, in ReplaceRegion() argument
207 std::string region_1 = wgsl_code.substr(idx1, id1_len); in ReplaceRegion()
Dwgsl_mutator.h78 void SwapIntervals(size_t idx1,
89 void DeleteInterval(size_t idx1, size_t reg_len, std::string& wgsl_code);
97 void DuplicateInterval(size_t idx1,
110 void ReplaceRegion(size_t idx1,
/third_party/node/deps/npm/node_modules/iconv-lite/encodings/
Dsbcs-codec.js62 var idx1 = 0, idx2 = 0;
64 idx1 = buf[i]*2; idx2 = i*2;
65 newBuf[idx2] = decodeBuf[idx1];
66 newBuf[idx2+1] = decodeBuf[idx1+1];
/third_party/ffmpeg/libavfilter/
Dcolorspacedsp.c130 #define init_yuv2yuv_fn(idx1, bit1, bit2) \ in ff_colorspacedsp_init() argument
131 dsp->yuv2yuv[idx1][BPP_##bit2][SS_444] = yuv2yuv_444p##bit1##to##bit2##_c; \ in ff_colorspacedsp_init()
132 dsp->yuv2yuv[idx1][BPP_##bit2][SS_422] = yuv2yuv_422p##bit1##to##bit2##_c; \ in ff_colorspacedsp_init()
133 dsp->yuv2yuv[idx1][BPP_##bit2][SS_420] = yuv2yuv_420p##bit1##to##bit2##_c in ff_colorspacedsp_init()
/third_party/protobuf/objectivec/
DGPBArray.h208 - (void)exchangeValueAtIndex:(NSUInteger)idx1
380 - (void)exchangeValueAtIndex:(NSUInteger)idx1
552 - (void)exchangeValueAtIndex:(NSUInteger)idx1
724 - (void)exchangeValueAtIndex:(NSUInteger)idx1
896 - (void)exchangeValueAtIndex:(NSUInteger)idx1
1068 - (void)exchangeValueAtIndex:(NSUInteger)idx1
1240 - (void)exchangeValueAtIndex:(NSUInteger)idx1
1534 - (void)exchangeValueAtIndex:(NSUInteger)idx1
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_ra.cpp41 void ComponentInterference::add(size_t idx1, size_t idx2) in add() argument
43 assert(idx1 > idx2); in add()
44 assert(m_rows.size() > idx1); in add()
45 m_rows[idx1].push_back(idx2); in add()
46 m_rows[idx2].push_back(idx1); in add()

123