Home
last modified time | relevance | path

Searched refs:ind2 (Results 1 – 25 of 31) sorted by relevance

12

/external/cldr/tools/java/org/unicode/cldr/json/
DCldrNode.java76 int ind2 = pathSegment.indexOf("=", ind1); in extractAttrs() local
77 if (ind2 < 0) { in extractAttrs()
81 String attr = pathSegment.substring(ind1, ind2); in extractAttrs()
83 ind1 = ind2 + 1; in extractAttrs()
86 ind2 = pathSegment.indexOf("\"]", ind1); in extractAttrs()
88 ind2 = pathSegment.indexOf("]", ind1); in extractAttrs()
91 if (ind2 < 0) { in extractAttrs()
96 String value = pathSegment.substring(ind1, ind2); in extractAttrs()
98 start = ind2; in extractAttrs()
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
Dindependent_test.py136 ind2 = independent_lib.Independent(
144 kullback_leibler.kl_divergence(ind1, ind2)
151 ind2 = independent_lib.Independent(
159 kullback_leibler.kl_divergence(ind1, ind2)
171 ind2 = independent_lib.Independent(
175 ind_kl = kullback_leibler.kl_divergence(ind1, ind2)
194 ind2 = independent_lib.Independent(
198 ind_kl = kullback_leibler.kl_divergence(ind1, ind2)
215 ind2 = independent_lib.Independent(
219 ind_kl = kullback_leibler.kl_divergence(ind1, ind2)
/external/clang/test/OpenMP/
Dfor_linear_messages.cpp49 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
51 #pragma omp for linear(ind2:L) in test_template()
53 T cur = arr[(int)ind2]; in test_template()
54 ind2 += L; in test_template()
61 int ind2 = 0; in test_warn() local
63 #pragma omp for linear(ind2:LEN) in test_warn()
65 ind2 += LEN; in test_warn()
67 return ind2; in test_warn()
Dparallel_for_linear_messages.cpp59 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
61 #pragma omp parallel for linear(ind2 : L) in test_template()
63 T cur = arr[(int)ind2]; in test_template()
64 ind2 += L; in test_template()
72 int ind2 = 0; in test_warn() local
74 #pragma omp parallel for linear(ind2 : LEN) in test_warn()
76 ind2 += LEN; in test_warn()
78 return ind2; in test_warn()
Dfor_simd_linear_messages.cpp49 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
51 #pragma omp for simd linear(ind2:L) in test_template()
53 T cur = arr[(int)ind2]; in test_template()
54 ind2 += L; in test_template()
61 int ind2 = 0; in test_warn() local
63 #pragma omp for simd linear(ind2:LEN) in test_warn()
65 ind2 += LEN; in test_warn()
67 return ind2; in test_warn()
Dtarget_parallel_for_linear_messages.cpp59 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
61 #pragma omp target parallel for linear(ind2 : L) in test_template()
63 T cur = arr[(int)ind2]; in test_template()
64 ind2 += L; in test_template()
72 int ind2 = 0; in test_warn() local
74 #pragma omp target parallel for linear(ind2 : LEN) in test_warn()
76 ind2 += LEN; in test_warn()
78 return ind2; in test_warn()
Dparallel_for_simd_linear_messages.cpp49 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
51 #pragma omp parallel for simd linear(ind2:L) in test_template()
53 T cur = arr[(int)ind2]; in test_template()
54 ind2 += L; in test_template()
61 int ind2 = 0; in test_warn() local
63 #pragma omp parallel for simd linear(ind2:LEN) in test_warn()
65 ind2 += LEN; in test_warn()
67 return ind2; in test_warn()
Dtarget_parallel_for_simd_linear_messages.cpp59 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
61 #pragma omp target parallel for simd linear(ind2 : L) in test_template()
63 T cur = arr[(int)ind2]; in test_template()
64 ind2 += L; in test_template()
72 int ind2 = 0; in test_warn() local
74 #pragma omp target parallel for simd linear(ind2 : LEN) in test_warn()
76 ind2 += LEN; in test_warn()
78 return ind2; in test_warn()
Dsimd_linear_messages.cpp49 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
51 #pragma omp simd linear(ind2:L) in test_template()
53 T cur = arr[(int)ind2]; in test_template()
54 ind2 += L; in test_template()
61 int ind2 = 0; in test_warn() local
63 #pragma omp simd linear(ind2:LEN) in test_warn()
65 ind2 += LEN; in test_warn()
67 return ind2; in test_warn()
Dsimd_aligned_messages.cpp51 T ind2 = - num * L; in test_template() local
56 T cur = arr[(int)ind2]; in test_template()
57 ind2 += L; in test_template()
67 int *ind2 = 0; in test_warn() local
69 #pragma omp simd aligned(ind2:LEN) in test_warn()
71 ind2 += LEN; in test_warn()
Dfor_simd_aligned_messages.cpp51 T ind2 = - num * L; in test_template() local
56 T cur = arr[(int)ind2]; in test_template()
57 ind2 += L; in test_template()
67 int *ind2 = 0; in test_warn() local
69 #pragma omp for simd aligned(ind2:LEN) in test_warn()
71 ind2 += LEN; in test_warn()
Ddistribute_simd_linear_messages.cpp75 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
79 #pragma omp distribute simd linear(ind2:L) // expected-error {{argument of a linear clause should b… in test_template()
81 T cur = arr[(int)ind2]; in test_template()
82 ind2 += L; in test_template()
89 int ind2 = 0; in test_warn() local
92 …#pragma omp parallel for simd linear(ind2:LEN) // expected-warning {{zero linear step (ind2 should… in test_warn()
94 ind2 += LEN; in test_warn()
96 return ind2; in test_warn()
Dtaskloop_simd_linear_messages.cpp49 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
51 #pragma omp taskloop simd linear(ind2:L) in test_template()
53 T cur = arr[(int)ind2]; in test_template()
54 ind2 += L; in test_template()
61 int ind2 = 0; in test_warn() local
63 #pragma omp taskloop simd linear(ind2:LEN) in test_warn()
65 ind2 += LEN; in test_warn()
67 return ind2; in test_warn()
Ddistribute_parallel_for_simd_linear_messages.cpp75 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
79 #pragma omp distribute parallel for simd linear(ind2:L) // expected-error {{argument of a linear cl… in test_template()
81 T cur = arr[(int)ind2]; in test_template()
82 ind2 += L; in test_template()
89 int ind2 = 0; in test_warn() local
92 …#pragma omp parallel for simd linear(ind2:LEN) // expected-warning {{zero linear step (ind2 should… in test_warn()
94 ind2 += LEN; in test_warn()
96 return ind2; in test_warn()
Dtaskloop_simd_aligned_messages.cpp51 T ind2 = - num * L; in test_template() local
56 T cur = arr[(int)ind2]; in test_template()
57 ind2 += L; in test_template()
67 int *ind2 = 0; in test_warn() local
69 #pragma omp taskloop simd aligned(ind2:LEN) in test_warn()
71 ind2 += LEN; in test_warn()
Dtarget_parallel_for_simd_aligned_messages.cpp51 T ind2 = - num * L; in test_template() local
56 T cur = arr[(int)ind2]; in test_template()
57 ind2 += L; in test_template()
67 int *ind2 = 0; in test_warn() local
69 #pragma omp target parallel for simd aligned(ind2:LEN) in test_warn()
71 ind2 += LEN; in test_warn()
Dparallel_for_simd_aligned_messages.cpp51 T ind2 = - num * L; in test_template() local
56 T cur = arr[(int)ind2]; in test_template()
57 ind2 += L; in test_template()
67 int *ind2 = 0; in test_warn() local
69 #pragma omp parallel for simd aligned(ind2:LEN) in test_warn()
71 ind2 += LEN; in test_warn()
Ddistribute_simd_aligned_messages.cpp72 T ind2 = - num * L; in test_template() local
79 T cur = arr[(int)ind2]; in test_template()
80 ind2 += L; in test_template()
93 int *ind2 = 0; in test_warn() local
96 #pragma omp distribute simd aligned(ind2:LEN) // expected-error {{argument to 'aligned' clause must… in test_warn()
98 ind2 += LEN; in test_warn()
Ddistribute_parallel_for_simd_aligned_messages.cpp72 T ind2 = - num * L; in test_template() local
79 T cur = arr[(int)ind2]; in test_template()
80 ind2 += L; in test_template()
93 int *ind2 = 0; in test_warn() local
96 #pragma omp distribute parallel for simd aligned(ind2:LEN) // expected-error {{argument to 'aligned… in test_warn()
98 ind2 += LEN; in test_warn()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dpitch_estimator.c143 int ind1, ind2, peaks_ind, peak, max_ind; in WebRtcIsac_InitializePitch() local
206 ind2 = 0; in WebRtcIsac_InitializePitch()
209 corr = corrvec1[ind1++] + corrvec2[ind2++]; in WebRtcIsac_InitializePitch()
218 ind2 = PITCH_BW; in WebRtcIsac_InitializePitch()
222 ratio = ((double) (ind1 + 12)) / ((double) (ind2 + 12)); in WebRtcIsac_InitializePitch()
224 corr = adj * (corrvec1[ind1] + corrvec2[ind2]); in WebRtcIsac_InitializePitch()
230 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]); in WebRtcIsac_InitializePitch()
239 ind2 = PITCH_BW-1; in WebRtcIsac_InitializePitch()
243 ratio = ((double) (ind1 + 12)) / ((double) (ind2 + 12)); in WebRtcIsac_InitializePitch()
245 corr = adj * (corrvec1[ind1] + corrvec2[ind2]); in WebRtcIsac_InitializePitch()
[all …]
/external/grpc-grpc/test/core/tsi/
Dfake_transport_security_test.cc121 for (size_t ind2 = 0; ind2 < size; ind2++) { in fake_tsi_test_do_round_trip_odd_buffer_size() local
129 fake_fixture->base.config, odd_sizes[ind1], odd_sizes[ind2], in fake_tsi_test_do_round_trip_odd_buffer_size()
/external/testng/src/main/java/org/testng/
DConverter.java69 int ind2 = bn.lastIndexOf(File.separatorChar); in run() local
70 String baseName = bn.substring(ind2 + 1); in run()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Davx512-gather-scatter-intrin.ll25 …%ind2 = add <16 x i32> %ind, <i32 0, i32 1, i32 2, i32 3, i32 0, i32 1, i32 2, i32 3, i32 0, i32 1…
26 …call void @llvm.x86.avx512.scatter.dps.512 (i8* %stbuf, i16 %mask, <16 x i32>%ind2, <16 x float> %…
41 %ind2 = add <8 x i32> %ind, <i32 0, i32 1, i32 2, i32 3, i32 0, i32 1, i32 2, i32 3>
42 …call void @llvm.x86.avx512.scatter.dpd.512 (i8* %stbuf, i8 %mask, <8 x i32>%ind2, <8 x double> %x,…
57 %ind2 = add <8 x i64> %ind, <i64 0, i64 1, i64 2, i64 3, i64 0, i64 1, i64 2, i64 3>
58 …call void @llvm.x86.avx512.scatter.qps.512 (i8* %stbuf, i8 %mask, <8 x i64>%ind2, <8 x float> %x, …
73 %ind2 = add <8 x i64> %ind, <i64 0, i64 1, i64 2, i64 3, i64 0, i64 1, i64 2, i64 3>
74 …call void @llvm.x86.avx512.scatter.qpd.512 (i8* %stbuf, i8 %mask, <8 x i64>%ind2, <8 x double> %x,…
101 …%ind2 = add <16 x i32> %ind, <i32 0, i32 1, i32 2, i32 3, i32 0, i32 1, i32 2, i32 3, i32 0, i32 1…
102 …call void @llvm.x86.avx512.scatter.dpi.512 (i8* %stbuf, i16 %mask, <16 x i32>%ind2, <16 x i32> %x,…
[all …]
/external/llvm/test/CodeGen/X86/
Davx512-gather-scatter-intrin.ll24 …%ind2 = add <16 x i32> %ind, <i32 0, i32 1, i32 2, i32 3, i32 0, i32 1, i32 2, i32 3, i32 0, i32 1…
25 …call void @llvm.x86.avx512.scatter.dps.512 (i8* %stbuf, i16 %mask, <16 x i32>%ind2, <16 x float> %…
39 %ind2 = add <8 x i32> %ind, <i32 0, i32 1, i32 2, i32 3, i32 0, i32 1, i32 2, i32 3>
40 …call void @llvm.x86.avx512.scatter.dpd.512 (i8* %stbuf, i8 %mask, <8 x i32>%ind2, <8 x double> %x,…
54 %ind2 = add <8 x i64> %ind, <i64 0, i64 1, i64 2, i64 3, i64 0, i64 1, i64 2, i64 3>
55 …call void @llvm.x86.avx512.scatter.qps.512 (i8* %stbuf, i8 %mask, <8 x i64>%ind2, <8 x float> %x, …
69 %ind2 = add <8 x i64> %ind, <i64 0, i64 1, i64 2, i64 3, i64 0, i64 1, i64 2, i64 3>
70 …call void @llvm.x86.avx512.scatter.qpd.512 (i8* %stbuf, i8 %mask, <8 x i64>%ind2, <8 x double> %x,…
96 …%ind2 = add <16 x i32> %ind, <i32 0, i32 1, i32 2, i32 3, i32 0, i32 1, i32 2, i32 3, i32 0, i32 1…
97 …call void @llvm.x86.avx512.scatter.dpi.512 (i8* %stbuf, i16 %mask, <16 x i32>%ind2, <16 x i32> %x,…
[all …]
/external/tensorflow/tensorflow/contrib/training/python/training/
Dbatch_sequences_with_states_test.py57 ind2 = np.array([
69 array_ops.constant(ind2, dtypes.int64),
548 ind2 = np.array([[1], [2]])
558 indices=array_ops.constant(ind2, dtypes.int64),

12