Home
last modified time | relevance | path

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

123

/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/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()
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()
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_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_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()
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()
/external/llvm-project/clang/test/OpenMP/
Dfor_linear_messages.cpp60 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
62 #pragma omp for linear(ind2:L) in test_template()
64 T cur = arr[(int)ind2]; in test_template()
65 ind2 += L; in test_template()
72 int ind2 = 0; in test_warn() local
74 #pragma omp for linear(ind2:LEN) in test_warn()
76 ind2 += LEN; in test_warn()
78 return ind2; in test_warn()
Dparallel_for_linear_messages.cpp70 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
72 #pragma omp parallel for linear(ind2 : L) in test_template()
74 T cur = arr[(int)ind2]; in test_template()
75 ind2 += L; in test_template()
83 int ind2 = 0; in test_warn() local
85 #pragma omp parallel for linear(ind2 : LEN) in test_warn()
87 ind2 += LEN; in test_warn()
89 return ind2; in test_warn()
Dfor_simd_linear_messages.cpp60 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
62 #pragma omp for simd linear(ind2:L) in test_template()
64 T cur = arr[(int)ind2]; in test_template()
65 ind2 += L; in test_template()
72 int ind2 = 0; in test_warn() local
74 #pragma omp for simd linear(ind2:LEN) in test_warn()
76 ind2 += LEN; in test_warn()
78 return ind2; in test_warn()
Dtarget_teams_distribute_simd_linear_messages.cpp83 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
85 #pragma omp target teams distribute simd linear(ind2:L) // expected-error {{argument of a linear cl… in test_template()
87 T cur = arr[(int)ind2]; in test_template()
88 ind2 += L; in test_template()
95 int ind2 = 0; in test_warn() local
97 …#pragma omp target teams distribute simd linear(ind2:LEN) // expected-warning {{zero linear step (… in test_warn()
99 ind2 += LEN; in test_warn()
101 return ind2; in test_warn()
Dtarget_teams_distribute_parallel_for_simd_linear_messages.cpp83 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
85 #pragma omp target teams distribute parallel for simd linear(ind2:L) // expected-error {{argument o… in test_template()
87 T cur = arr[(int)ind2]; in test_template()
88 ind2 += L; in test_template()
95 int ind2 = 0; in test_warn() local
97 …#pragma omp target teams distribute parallel for simd linear(ind2:LEN) // expected-warning {{zero … in test_warn()
99 ind2 += LEN; in test_warn()
101 return ind2; in test_warn()
Dtarget_simd_linear_messages.cpp80 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
82 #pragma omp target simd linear(ind2 : L) in test_template()
84 T cur = arr[(int)ind2]; in test_template()
85 ind2 += L; in test_template()
93 int ind2 = 0; in test_warn() local
95 #pragma omp target simd linear(ind2 : LEN) in test_warn()
97 ind2 += LEN; in test_warn()
99 return ind2; in test_warn()
Dteams_distribute_simd_linear_messages.cpp85 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
88 #pragma omp teams distribute simd linear(ind2:L) // expected-error {{argument of a linear clause sh… in test_template()
90 T cur = arr[(int)ind2]; in test_template()
91 ind2 += L; in test_template()
98 int ind2 = 0; in test_warn() local
101 …#pragma omp teams distribute simd linear(ind2:LEN) // expected-warning {{zero linear step (ind2 sh… in test_warn()
103 ind2 += LEN; in test_warn()
105 return ind2; in test_warn()
Dtarget_parallel_for_linear_messages.cpp79 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
81 #pragma omp target parallel for linear(ind2 : L) in test_template()
83 T cur = arr[(int)ind2]; in test_template()
84 ind2 += L; in test_template()
92 int ind2 = 0; in test_warn() local
94 #pragma omp target parallel for linear(ind2 : LEN) in test_warn()
96 ind2 += LEN; in test_warn()
98 return ind2; in test_warn()
Dparallel_for_simd_linear_messages.cpp59 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
61 #pragma omp parallel for simd linear(ind2:L) in test_template()
63 T cur = arr[(int)ind2]; in test_template()
64 ind2 += L; in test_template()
71 int ind2 = 0; in test_warn() local
73 #pragma omp parallel for simd linear(ind2:LEN) in test_warn()
75 ind2 += LEN; in test_warn()
77 return ind2; in test_warn()
Dtarget_parallel_for_simd_linear_messages.cpp81 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
83 #pragma omp target parallel for simd linear(ind2 : L) in test_template()
85 T cur = arr[(int)ind2]; in test_template()
86 ind2 += L; in test_template()
94 int ind2 = 0; in test_warn() local
96 #pragma omp target parallel for simd linear(ind2 : LEN) in test_warn()
98 ind2 += LEN; in test_warn()
100 return ind2; in test_warn()
Ddistribute_simd_linear_messages.cpp95 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
99 #pragma omp distribute simd linear(ind2:L) // expected-error {{argument of a linear clause should b… in test_template()
101 T cur = arr[(int)ind2]; in test_template()
102 ind2 += L; in test_template()
109 int ind2 = 0; in test_warn() local
112 …#pragma omp parallel for simd linear(ind2:LEN) // expected-warning {{zero linear step (ind2 should… in test_warn()
114 ind2 += LEN; in test_warn()
116 return ind2; in test_warn()
Dteams_distribute_parallel_for_simd_linear_messages.cpp85 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
88 #pragma omp teams distribute parallel for simd linear(ind2:L) // expected-error {{argument of a lin… in test_template()
90 T cur = arr[(int)ind2]; in test_template()
91 ind2 += L; in test_template()
98 int ind2 = 0; in test_warn() local
101 …#pragma omp teams distribute parallel for simd linear(ind2:LEN) // expected-warning {{zero linear … in test_warn()
103 ind2 += LEN; in test_warn()
105 return ind2; in test_warn()
Dsimd_aligned_messages.cpp55 T ind2 = - num * L; in test_template() local
60 T cur = arr[(int)ind2]; in test_template()
61 ind2 += L; in test_template()
71 int *ind2 = 0; in test_warn() local
73 #pragma omp simd aligned(ind2:LEN) in test_warn()
75 ind2 += LEN; in test_warn()
Dfor_simd_aligned_messages.cpp53 T ind2 = - num * L; in test_template() local
58 T cur = arr[(int)ind2]; in test_template()
59 ind2 += L; in test_template()
69 int *ind2 = 0; in test_warn() local
71 #pragma omp for simd aligned(ind2:LEN) in test_warn()
73 ind2 += LEN; in test_warn()
/external/webrtc/modules/audio_coding/codecs/isac/main/source/
Dpitch_estimator.c190 int ind1, ind2, peaks_ind, peak, max_ind; in RTC_PUSH_IGNORING_WFRAME_LARGER_THAN() local
253 ind2 = 0; in RTC_PUSH_IGNORING_WFRAME_LARGER_THAN()
256 corr = corrvec1[ind1++] + corrvec2[ind2++]; in RTC_PUSH_IGNORING_WFRAME_LARGER_THAN()
265 ind2 = PITCH_BW; in RTC_PUSH_IGNORING_WFRAME_LARGER_THAN()
269 ratio = ((double) (ind1 + 12)) / ((double) (ind2 + 12)); in RTC_PUSH_IGNORING_WFRAME_LARGER_THAN()
271 corr = adj * (corrvec1[ind1] + corrvec2[ind2]); in RTC_PUSH_IGNORING_WFRAME_LARGER_THAN()
277 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]); in RTC_PUSH_IGNORING_WFRAME_LARGER_THAN()
286 ind2 = PITCH_BW-1; in RTC_PUSH_IGNORING_WFRAME_LARGER_THAN()
290 ratio = ((double) (ind1 + 12)) / ((double) (ind2 + 12)); in RTC_PUSH_IGNORING_WFRAME_LARGER_THAN()
292 corr = adj * (corrvec1[ind1] + corrvec2[ind2]); in RTC_PUSH_IGNORING_WFRAME_LARGER_THAN()
[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()

123