/external/javassist/src/test/test3/ |
D | Switch.java | 13 int j = 4; in foo() local 14 j = 4; in foo() 15 j = 4; in foo() 16 j = 4; in foo() 17 j = 4; in foo() 18 j = 4; in foo() 19 j = 4; in foo() 20 j = 4; in foo() 21 j = 4; in foo() 22 j = 4; in foo() [all …]
|
/external/toybox/tests/files/bc/ |
D | bessel.txt | 1 j(0, 0) 2 j(0, .5) 3 j(0, -.5) 4 j(0, 1) 5 j(0, -1) 6 j(0, 1.5) 7 j(0, -1.5) 8 j(0, 1.74) 9 j(0, -1.74) 10 j(0, 2) [all …]
|
/external/clang/test/SemaCXX/ |
D | complex-folding.cpp | 5 static_assert((0.0 + 0.0j) == (0.0 + 0.0j)); 6 static_assert((0.0 + 0.0j) != (0.0 + 0.0j)); // expected-error {{static_assert}} 8 static_assert((0.0 + 0.0j) == 0.0); 9 static_assert(0.0 == (0.0 + 0.0j)); 10 static_assert(0.0 == 0.0j); 11 static_assert((0.0 + 1.0j) != 0.0); 12 static_assert(1.0 != (0.0 + 0.0j)); 13 static_assert(0.0 != 1.0j); 17 static_assert((1.0 + 0.0j) == (0.0 + 0.0j)); // expected-error {{static_assert}} 18 static_assert((1.0 + 0.0j) == (1.0 + 0.0j)); [all …]
|
/external/python/cpython2/Lib/ |
D | markupbase.py | 49 def updatepos(self, i, j): argument 50 if i >= j: 51 return j 53 nlines = rawdata.count("\n", i, j) 56 pos = rawdata.rindex("\n", i, j) # Should not fail 57 self.offset = j-(pos+1) 59 self.offset = self.offset + j-i 60 return j 77 j = i + 2 78 assert rawdata[i:j] == "<!", "unexpected call to parse_declaration" [all …]
|
/external/python/cpython3/Lib/ |
D | _markupbase.py | 44 def updatepos(self, i, j): argument 45 if i >= j: 46 return j 48 nlines = rawdata.count("\n", i, j) 51 pos = rawdata.rindex("\n", i, j) # Should not fail 52 self.offset = j-(pos+1) 54 self.offset = self.offset + j-i 55 return j 72 j = i + 2 73 assert rawdata[i:j] == "<!", "unexpected call to parse_declaration" [all …]
|
/external/fft2d/src/fft2d/fft2d/ |
D | shrtdct.c | 57 int j; in ddct8x8s() local 62 for (j = 0; j <= 7; j++) { in ddct8x8s() 63 x0r = a[0][j] + a[7][j]; in ddct8x8s() 64 x1r = a[0][j] - a[7][j]; in ddct8x8s() 65 x0i = a[2][j] + a[5][j]; in ddct8x8s() 66 x1i = a[2][j] - a[5][j]; in ddct8x8s() 67 x2r = a[4][j] + a[3][j]; in ddct8x8s() 68 x3r = a[4][j] - a[3][j]; in ddct8x8s() 69 x2i = a[6][j] + a[1][j]; in ddct8x8s() 70 x3i = a[6][j] - a[1][j]; in ddct8x8s() [all …]
|
/external/ComputeLibrary/src/core/NEON/kernels/convolution/winograd/weight_transforms/ |
D | arm_fp32_2x2_5x5.cpp | 48 for (int j = 0; j < 5; j++) in arm_fp32_2x2_5x5() local 50 w[i][j] = vld1q_f32(inptr + i*ld_weight_row + j*ld_weight_col); in arm_fp32_2x2_5x5() 55 for (int j = 0; j < 5; j++) in arm_fp32_2x2_5x5() local 58 Ww[0][j] = vmulq_n_f32(w[0][j], 1.0f/4.0f); in arm_fp32_2x2_5x5() 61 Ww[1][j] = vmulq_n_f32( in arm_fp32_2x2_5x5() 64 vaddq_f32(w[1][j], w[0][j]), in arm_fp32_2x2_5x5() 65 vaddq_f32(w[3][j], w[2][j]) in arm_fp32_2x2_5x5() 67 w[4][j] in arm_fp32_2x2_5x5() 74 Ww[2][j] = vmulq_n_f32( in arm_fp32_2x2_5x5() 77 vsubq_f32(w[1][j], w[0][j]), in arm_fp32_2x2_5x5() [all …]
|
D | arm_fp32_4x4_3x3.cpp | 47 for (int j = 0; j < 3; j++) in arm_fp32_4x4_3x3() local 49 w[i][j] = vld1q_f32(inptr + i*ld_weight_row + j*ld_weight_col); in arm_fp32_4x4_3x3() 54 for (int j = 0; j < 3; j++) in arm_fp32_4x4_3x3() local 57 Ww[0][j] = vmulq_n_f32(w[0][j], 6.0); in arm_fp32_4x4_3x3() 60 Ww[1][j] = vmulq_n_f32(vaddq_f32(vaddq_f32(w[0][j], w[1][j]), w[2][j]), -4.0); in arm_fp32_4x4_3x3() 63 Ww[2][j] = vmulq_n_f32(vsubq_f32(vsubq_f32(w[1][j], w[0][j]), w[2][j]), 4.0); in arm_fp32_4x4_3x3() 66 Ww[3][j] = vmlaq_n_f32(vmlaq_n_f32(w[0][j], w[1][j], 2.0f), w[2][j], 4.0f); in arm_fp32_4x4_3x3() 69 Ww[4][j] = vmlaq_n_f32(vmlsq_n_f32(w[0][j], w[1][j], 2.0f), w[2][j], 4.0f); in arm_fp32_4x4_3x3() 72 Ww[5][j] = vmulq_n_f32(w[2][j], 24.0f); in arm_fp32_4x4_3x3() 102 for (int j = 0; j < 6; j++, m++) in arm_fp32_4x4_3x3() local [all …]
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_quad_depth_test.c | 64 unsigned j; in get_depth_stencil_values() local 69 for (j = 0; j < TGSI_QUAD_SIZE; j++) { in get_depth_stencil_values() 70 int x = quad->input.x0 % TILE_SIZE + (j & 1); in get_depth_stencil_values() 71 int y = quad->input.y0 % TILE_SIZE + (j >> 1); in get_depth_stencil_values() 72 data->bzzzz[j] = tile->data.depth16[y][x]; in get_depth_stencil_values() 76 for (j = 0; j < TGSI_QUAD_SIZE; j++) { in get_depth_stencil_values() 77 int x = quad->input.x0 % TILE_SIZE + (j & 1); in get_depth_stencil_values() 78 int y = quad->input.y0 % TILE_SIZE + (j >> 1); in get_depth_stencil_values() 79 data->bzzzz[j] = tile->data.depth32[y][x]; in get_depth_stencil_values() 84 for (j = 0; j < TGSI_QUAD_SIZE; j++) { in get_depth_stencil_values() [all …]
|
/external/minijail/ |
D | libminijail.c | 214 static void run_hooks_or_die(const struct minijail *j, 217 static bool seccomp_is_logging_allowed(const struct minijail *j) in seccomp_is_logging_allowed() argument 219 return seccomp_default_ret_log() || j->flags.seccomp_filter_logging; in seccomp_is_logging_allowed() 222 static void free_mounts_list(struct minijail *j) in free_mounts_list() argument 224 while (j->mounts_head) { in free_mounts_list() 225 struct mountpoint *m = j->mounts_head; in free_mounts_list() 226 j->mounts_head = j->mounts_head->next; in free_mounts_list() 234 j->mounts_tail = NULL; in free_mounts_list() 237 static void free_remounts_list(struct minijail *j) in free_remounts_list() argument 239 while (j->remounts_head) { in free_remounts_list() [all …]
|
D | libminijail.h | 95 void minijail_change_uid(struct minijail *j, uid_t uid); 96 void minijail_change_gid(struct minijail *j, gid_t gid); 98 void minijail_set_supplementary_gids(struct minijail *j, size_t size, 100 void minijail_keep_supplementary_gids(struct minijail *j); 102 int minijail_change_user(struct minijail *j, const char *user); 104 int minijail_change_group(struct minijail *j, const char *group); 105 void minijail_use_seccomp(struct minijail *j); 106 void minijail_no_new_privs(struct minijail *j); 107 void minijail_use_seccomp_filter(struct minijail *j); 108 void minijail_set_seccomp_filter_tsync(struct minijail *j); [all …]
|
/external/ComputeLibrary/src/core/NEON/kernels/convolution/winograd/input_transforms/ |
D | a64_fp16_6x6.cpp | 52 for (int j = 0, xj = 0; j < inner_tile_cols; j++, xj++) in a64_fp16_6x6() local 54 x_ptrs[i][j] = row_ptr + xj*input_col_stride; in a64_fp16_6x6() 64 for (int j = 0; j < inner_tile_cols; j++) in a64_fp16_6x6() local 66 x[i][j] = XTx[i][j] = 0.0f; in a64_fp16_6x6() 81 for (int j = 0; j < inner_tile_cols; j++) in a64_fp16_6x6() local 83 x[i][j] = vdupq_n_f16(0.0f); in a64_fp16_6x6() 84 XTx[i][j] = vdupq_n_f16(0.0f); in a64_fp16_6x6() 91 for (int j = 0; j < inner_tile_cols; j++) in a64_fp16_6x6() local 93 x[i][j] = vld1q_f16(x_ptrs[i][j]); in a64_fp16_6x6() 94 x_ptrs[i][j] += 8; in a64_fp16_6x6() [all …]
|
D | arm_fp32_6x6.cpp | 53 for (int j = 0, xj = 0; j < inner_tile_cols; j++, xj++) in arm_fp32_6x6() local 55 x_ptrs[i][j] = row_ptr + xj*input_col_stride; in arm_fp32_6x6() 65 for (int j = 0; j < inner_tile_cols; j++) in arm_fp32_6x6() local 67 x[i][j] = XTx[i][j] = 0.0f; in arm_fp32_6x6() 82 for (int j = 0; j < inner_tile_cols; j++) in arm_fp32_6x6() local 84 x[i][j] = vdup_n_f32(0.0f); in arm_fp32_6x6() 85 XTx[i][j] = vdup_n_f32(0.0f); in arm_fp32_6x6() 92 for (int j = 0; j < inner_tile_cols; j++) in arm_fp32_6x6() local 94 x[i][j] = vld1_f32(x_ptrs[i][j]); in arm_fp32_6x6() 95 x_ptrs[i][j] += 2; in arm_fp32_6x6() [all …]
|
D | arm_fp32_4x4.cpp | 50 for (int j = 0, xj = 0; j < inner_tile_cols; j++, xj++) in arm_fp32_4x4() local 52 x_ptrs[i][j] = row_ptr + xj*input_col_stride; in arm_fp32_4x4() 63 for (int j = 0; j < inner_tile_cols; j++) in arm_fp32_4x4() local 65 x[i][j] = XTx[i][j] = 0.0f; in arm_fp32_4x4() 81 for (int j = 0; j < inner_tile_cols; j++) in arm_fp32_4x4() local 83 x[i][j] = vdupq_n_f32(0.0f); in arm_fp32_4x4() 84 XTx[i][j] = vdupq_n_f32(0.0f); in arm_fp32_4x4() 91 for (int j = 0; j < inner_tile_cols; j++) in arm_fp32_4x4() local 93 x[i][j] = vld1q_f32(x_ptrs[i][j]); in arm_fp32_4x4() 94 x_ptrs[i][j] += 4; in arm_fp32_4x4() [all …]
|
/external/libnetfilter_conntrack/src/conntrack/ |
D | bsf.c | 325 unsigned int i, j; in add_state_filter_cta() local 343 j = 0; in add_state_filter_cta() 344 j += nfct_bsf_load_payload_offset(this, j); in add_state_filter_cta() 345 j += nfct_bsf_find_attr(this, CTA_PROTOINFO, j); in add_state_filter_cta() 346 j += nfct_bsf_cmp_k_stack(this, 0, label_continue - j, j, s); in add_state_filter_cta() 347 j += nfct_bsf_add_attr_data_offset(this, j); in add_state_filter_cta() 348 j += nfct_bsf_find_attr(this, cta_protoinfo_proto, j); in add_state_filter_cta() 349 j += nfct_bsf_cmp_k_stack(this, 0, label_continue - j, j, s); in add_state_filter_cta() 350 j += nfct_bsf_add_attr_data_offset(this, j); in add_state_filter_cta() 351 j += nfct_bsf_find_attr(this, cta_protoinfo_state, j); in add_state_filter_cta() [all …]
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/containers/sequences/vector/vector.modifiers/ |
D | push_back.pass.cpp | 28 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in tests() local 29 assert(c[j] == j); in tests() 33 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in tests() local 34 assert(c[j] == j); in tests() 38 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in tests() local 39 assert(c[j] == j); in tests() 43 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in tests() local 44 assert(c[j] == j); in tests() 48 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in tests() local 49 assert(c[j] == j); in tests() [all …]
|
D | insert_iter_size_value.pass.cpp | 30 int j; in tests() local 31 for (j = 0; j < 10; ++j) in tests() 32 assert(v[j] == 0); in tests() 33 for (; j < 15; ++j) in tests() 34 assert(v[j] == 1); in tests() 35 for (++j; j < 105; ++j) in tests() 36 assert(v[j] == 0); in tests() 46 std::size_t j; in tests() local 47 for (j = 0; j < 10; ++j) in tests() 48 assert(v[j] == 0); in tests() [all …]
|
/external/libcxx/test/std/containers/sequences/vector/vector.modifiers/ |
D | push_back.pass.cpp | 28 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in main() local 29 assert(c[j] == j); in main() 33 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in main() local 34 assert(c[j] == j); in main() 38 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in main() local 39 assert(c[j] == j); in main() 43 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in main() local 44 assert(c[j] == j); in main() 48 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in main() local 49 assert(c[j] == j); in main() [all …]
|
D | insert_iter_size_value.pass.cpp | 31 int j; in main() local 32 for (j = 0; j < 10; ++j) in main() 33 assert(v[j] == 0); in main() 34 for (; j < 15; ++j) in main() 35 assert(v[j] == 1); in main() 36 for (++j; j < 105; ++j) in main() 37 assert(v[j] == 0); in main() 47 std::size_t j; in main() local 48 for (j = 0; j < 10; ++j) in main() 49 assert(v[j] == 0); in main() [all …]
|
/external/ComputeLibrary/src/core/NEON/kernels/convolution/winograd/output_transforms/ |
D | a64_fp16_4x4_3x3.cpp | 52 for (int j = 0; j < output_tile_cols; j++) in a64_fp16_4x4_3x3() local 54 outptrs[i][j] = output + i*output_row_stride + j*output_col_stride; in a64_fp16_4x4_3x3() 70 for (int j = 0; j < 6; j++, m++) in a64_fp16_4x4_3x3() local 72 F[i][j] = vld1q_f16(inptr + m*matrix_stride); in a64_fp16_4x4_3x3() 94 for (int j = 0; j < 4; j++) in a64_fp16_4x4_3x3() local 97 …f[0][j] = vaddq_f16(vaddq_f16(vaddq_f16(FZ[0][j], FZ[1][j]), vaddq_f16(FZ[2][j], FZ[3][j])), FZ[4]… in a64_fp16_4x4_3x3() 100 …f[1][j] = vaddq_f16(vsubq_f16(FZ[1][j], FZ[2][j]), vmulq_f16(vsubq_f16(FZ[3][j], FZ[4][j]), vdupq_… in a64_fp16_4x4_3x3() 103 …f[2][j] = vaddq_f16(vaddq_f16(FZ[1][j], FZ[2][j]), vmulq_f16(vaddq_f16(FZ[3][j], FZ[4][j]), vdupq_… in a64_fp16_4x4_3x3() 106 …f[3][j] = vaddq_f16(vaddq_f16(vsubq_f16(FZ[1][j], FZ[2][j]), vmulq_f16(vsubq_f16(FZ[3][j], FZ[4][j… in a64_fp16_4x4_3x3() 121 for (int j = 0; j < output_tile_cols; j++) in a64_fp16_4x4_3x3() local [all …]
|
D | arm_fp32_4x4_3x3.cpp | 56 for (auto j = 0u; j < 6; j++, m++) in arm_fp32_4x4_3x3() local 58 F[i][j] = vld1q_f32(inptr + m*matrix_stride); in arm_fp32_4x4_3x3() 80 for (auto j = 0u; j < 4; j++) in arm_fp32_4x4_3x3() local 83 …f[0][j] = vaddq_f32(vaddq_f32(vaddq_f32(FZ[0][j], FZ[1][j]), vaddq_f32(FZ[2][j], FZ[3][j])), FZ[4]… in arm_fp32_4x4_3x3() 86 f[1][j] = vmlaq_n_f32(vsubq_f32(FZ[1][j], FZ[2][j]), vsubq_f32(FZ[3][j], FZ[4][j]), 2.0f); in arm_fp32_4x4_3x3() 89 f[2][j] = vmlaq_n_f32(vaddq_f32(FZ[1][j], FZ[2][j]), vaddq_f32(FZ[3][j], FZ[4][j]), 4.0f); in arm_fp32_4x4_3x3() 92 …f[3][j] = vaddq_f32(vmlaq_n_f32(vsubq_f32(FZ[1][j], FZ[2][j]), vsubq_f32(FZ[3][j], FZ[4][j]), 8.0f… in arm_fp32_4x4_3x3() 107 for (auto j = 0u; j < output_tile_cols; j++) in arm_fp32_4x4_3x3() local 110 vmaxq_f32(vminq_f32(vaddq_f32(f[i][j], b), vdupq_n_f32(output_max)), in arm_fp32_4x4_3x3() 112 vst1q_f32(outptr + i*output_row_stride + j*output_col_stride, y); in arm_fp32_4x4_3x3() [all …]
|
/external/libyuv/files/unit_test/ |
D | math_test.cc | 74 for (int j = 0; j < 1280; ++j) { in TEST_F() local 75 if (div[j] == 0) { in TEST_F() 76 div[j] = 1280; in TEST_F() 78 num[j] &= 0xffff; // Clamp to avoid divide overflow. in TEST_F() 81 for (int j = 0; j < 1280; ++j) { in TEST_F() local 82 result_opt[j] = libyuv::FixedDiv(num[j], div[j]); in TEST_F() 85 for (int j = 0; j < 1280; ++j) { in TEST_F() local 86 result_c[j] = libyuv::FixedDiv_C(num[j], div[j]); in TEST_F() 87 EXPECT_NEAR(result_c[j], result_opt[j], 1); in TEST_F() 99 for (int j = 0; j < 1280; ++j) { in TEST_F() local [all …]
|
/external/spdx-tools/rdfloader/parser2v3/ |
D | parse_snippet_info_test.go | 102 <j.0:StartEndPointer> 103 <j.0:startPointer> 104 <j.0:LineCharPointer> 105 …<j.0:reference rdf:resource="http://spdx.org/spdxdocs/spdx-example-444504E0-4F89-41D3-9A0C-0305E82… 106 <j.0:lineNumber>420</j.0:lineNumber> 107 </j.0:LineCharPointer> 108 </j.0:startPointer> 109 <j.0:endPointer> 110 <j.0:LineCharPointer> 111 …<j.0:reference rdf:resource="http://spdx.org/spdxdocs/spdx-example-444504E0-4F89-41D3-9A0C-0305E82… [all …]
|
/external/spdx-tools/rdfloader/parser2v2/ |
D | parse_snippet_info_test.go | 102 <j.0:StartEndPointer> 103 <j.0:startPointer> 104 <j.0:LineCharPointer> 105 …<j.0:reference rdf:resource="http://spdx.org/spdxdocs/spdx-example-444504E0-4F89-41D3-9A0C-0305E82… 106 <j.0:lineNumber>420</j.0:lineNumber> 107 </j.0:LineCharPointer> 108 </j.0:startPointer> 109 <j.0:endPointer> 110 <j.0:LineCharPointer> 111 …<j.0:reference rdf:resource="http://spdx.org/spdxdocs/spdx-example-444504E0-4F89-41D3-9A0C-0305E82… [all …]
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vb_rendertmp.h | 78 GLuint j; in TAG() local 83 for (j=start+1; j<count; j+=2 ) { in TAG() 86 RENDER_LINE( ELT(j-1), ELT(j) ); in TAG() 88 RENDER_LINE( ELT(j), ELT(j-1) ); in TAG() 99 GLuint j; in TAG() local 109 for (j=start+1; j<count; j++ ) { in TAG() 111 RENDER_LINE( ELT(j-1), ELT(j) ); in TAG() 113 RENDER_LINE( ELT(j), ELT(j-1) ); in TAG() 165 GLuint j; in TAG() local 171 for (j=start+2; j<count; j+=3) { in TAG() [all …]
|