Home
last modified time | relevance | path

Searched +full:- +full:j (Results 1 – 25 of 1188) sorted by relevance

12345678910>>...48

/external/toybox/tests/files/bc/
Dbessel.txt1 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/fft2d/src/fft2d/fft2d/
Dshrtdct.c4 method :row-column, radix 4 FFT
15 -------- 8x8 DCT (Discrete Cosine Transform) / Inverse of DCT --------
22 (s[0] = 1/sqrt(2), s[j] = 1, j > 0)
28 (s[0] = 1/sqrt(2), s[j] = 1, j > 0)
33 ddct8x8s(-1, a);
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()
[all …]
/external/clang/test/SemaCXX/
Dcomplex-folding.cpp1 // RUN: %clang_cc1 %s -std=c++1z -fsyntax-only -verify
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}}
[all …]
/external/python/cpython2/Lib/
Dmarkupbase.py11 _declname_match = re.compile(r'[a-zA-Z][-_.a-zA-Z0-9]*\s*').match
13 _commentclose = re.compile(r'--\s*>')
16 # An analysis of the MS-Word extensions is available at
45 # Internal -- update line number and offset. This should be
46 # called for each piece of data exactly once, in order -- in other
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
[all …]
/external/python/cpython3/Lib/
D_markupbase.py10 _declname_match = re.compile(r'[a-zA-Z][-_.a-zA-Z0-9]*\s*').match
12 _commentclose = re.compile(r'--\s*>')
15 # An analysis of the MS-Word extensions is available at
40 # Internal -- update line number and offset. This should be
41 # called for each piece of data exactly once, in order -- in other
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
[all …]
/external/libnetfilter_conntrack/src/conntrack/
Dbsf.c2 * (C) 2005-2011 by Pablo Neira Ayuso <pablo@netfilter.org>
173 .jt = jump_true - 1, in nfct_bsf_cmp_k_stack()
193 .jf = jump_false - 1, in nfct_bsf_cmp_k_stack_jf()
247 /* A = skb->data[X + k:word_size] */ in nfct_bsf_load_attr()
261 /* A = skb->data[X + k:word_size] */ in nfct_bsf_load_attr_offset()
297 /* X = offset to nlh->nlmsg_type */ in bsf_cmp_subsys()
302 /* A = skb->data[X+k:B] (subsys_id) */ in bsf_cmp_subsys()
325 unsigned int i, j; in add_state_filter_cta() local
330 /* XXX: 32 maximum states + 3 jumps in the three-level iteration */ in add_state_filter_cta()
334 return -1; in add_state_filter_cta()
[all …]
/external/python/cpython3/Lib/test/
Dtest_complex.py16 (1+1j, 0+0j),
17 (1+1j, 0.0),
18 (1+1j, 0),
19 (1.0, 0+0j),
20 (1, 0+0j),
40 def assertCloseAbs(self, x, y, eps=1e-9):
50 self.assertTrue(abs((x-y)/y) < eps)
75 def assertClose(self, x, y, eps=1e-9):
95 simple_real = [float(i) for i in range(-5, 6)]
103 self.check_div(complex(1e200, 1e200), 1+0j)
[all …]
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_quad_depth_test.c21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
64 unsigned j; in get_depth_stencil_values() local
65 const struct softpipe_cached_tile *tile = data->tile; in get_depth_stencil_values()
67 switch (data->format) { in get_depth_stencil_values()
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()
[all …]
/external/mesa3d/src/mesa/tnl/
Dt_vb_rendertmp.h2 * Mesa 3-D graphics library
4 * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
78 GLuint j; in TAG() local
83 for (j=start+1; j<count; j+=2 ) { in TAG()
85 if (ctx->Light.ProvokingVertex == GL_LAST_VERTEX_CONVENTION_EXT) 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()
110 if (ctx->Light.ProvokingVertex == GL_LAST_VERTEX_CONVENTION_EXT) in TAG()
[all …]
/external/python/cpython2/Lib/test/
Dtest_complex.py11 # decorator for skipping tests on non-IEEE 754 platforms
35 def assertCloseAbs(self, x, y, eps=1e-9):
45 self.assertTrue(abs((x-y)/y) < eps)
70 def assertClose(self, x, y, eps=1e-9):
94 simple_real = [float(i) for i in xrange(-5, 6)]
102 self.check_div(complex(1e200, 1e200), 1+0j)
103 self.check_div(complex(1e-200, 1e-200), 1+0j)
110 self.assertRaises(ZeroDivisionError, complex.__div__, 1+1j, 0+0j)
112 # self.assertRaises(OverflowError, pow, 1e200+1j, 1e200+1j)
115 self.assertAlmostEqual(complex.__truediv__(2+0j, 1+1j), 1-1j)
[all …]
/external/ComputeLibrary/src/core/NEON/kernels/convolution/winograd/input_transforms/
Da64_fp16_6x6.cpp4 * SPDX-License-Identifier: MIT
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()
73 for (; channels_remaining >= 8; channels_remaining -= 8) 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
[all …]
Darm_fp32_6x6.cpp4 * SPDX-License-Identifier: MIT
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()
74 for (; channels_remaining >= 2; channels_remaining -= 2) 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
[all …]
/external/ComputeLibrary/src/core/NEON/kernels/convolution/winograd/weight_transforms/
Darm_fp32_2x2_5x5.cpp4 * SPDX-License-Identifier: MIT
40 for (; n_channels >= 4; n_channels -= 4) in arm_fp32_2x2_5x5()
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
57 // Ww[0][j] = w[0][j]/4.0f; in arm_fp32_2x2_5x5()
58 Ww[0][j] = vmulq_n_f32(w[0][j], 1.0f/4.0f); in arm_fp32_2x2_5x5()
60 // Ww[1][j] = -( w[0][j] + w[1][j] + w[2][j] + w[3][j] + w[4][j])/6.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()
[all …]
Darm_fp32_4x4_3x3.cpp4 * SPDX-License-Identifier: MIT
39 for (; n_channels >= 4; n_channels -= 4) in arm_fp32_4x4_3x3()
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
56 // Ww[0][j] = 6*w[0][j]; in arm_fp32_4x4_3x3()
57 Ww[0][j] = vmulq_n_f32(w[0][j], 6.0); in arm_fp32_4x4_3x3()
59 // Ww[1][j] = -4*w[0][j] + -4*w[1][j] + -4*w[2][j]; 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()
62 // Ww[2][j] = -4*w[0][j] + 4*w[1][j] + -4*w[2][j]; in arm_fp32_4x4_3x3()
[all …]
Da64_fp16_4x4_3x3.cpp4 * SPDX-License-Identifier: MIT
43 for (; n_channels >= 8; n_channels -= 8) in a64_fp16_4x4_3x3()
51 for (int j = 0; j < 3; j++) in a64_fp16_4x4_3x3() local
53 w[i][j] = vld1q_f16(inptr + i*ld_weight_row + j*ld_weight_col); in a64_fp16_4x4_3x3()
58 for (int j = 0; j < 3; j++) in a64_fp16_4x4_3x3() local
60 // Ww[0][j] = 6*w[0][j]; in a64_fp16_4x4_3x3()
61 Ww[0][j] = vmulq_n_f16(w[0][j], 6.0); in a64_fp16_4x4_3x3()
63 // Ww[1][j] = -4*w[0][j] + -4*w[1][j] + -4*w[2][j]; in a64_fp16_4x4_3x3()
64 Ww[1][j] = vmulq_n_f16(vaddq_f16(vaddq_f16(w[0][j], w[1][j]), w[2][j]), -4.0); in a64_fp16_4x4_3x3()
66 // Ww[2][j] = -4*w[0][j] + 4*w[1][j] + -4*w[2][j]; in a64_fp16_4x4_3x3()
[all …]
/external/minijail/
Dlibminijail.c2 * Use of this source code is governed by a BSD-style license that can be
40 #include "libminijail-private.h"
54 /* New cgroup namespace might not be in linux-headers yet. */
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()
[all …]
/external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
Dinsert_iter_size_value.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
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
[all …]
Dpush_back.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
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()
[all …]
Dpush_back_rvalue.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
31 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in main() local
32 assert(c[j] == MoveOnly(j)); in main()
36 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in main() local
37 assert(c[j] == MoveOnly(j)); in main()
41 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in main() local
42 assert(c[j] == MoveOnly(j)); in main()
46 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in main() local
47 assert(c[j] == MoveOnly(j)); in main()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/containers/sequences/vector/vector.modifiers/
Dpush_back.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
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
[all …]
Dinsert_iter_size_value.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
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()
[all …]
Dpush_back_rvalue.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
31 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in tests() local
32 assert(c[j] == MoveOnly(j)); in tests()
36 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in tests() local
37 assert(c[j] == MoveOnly(j)); in tests()
41 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in tests() local
42 assert(c[j] == MoveOnly(j)); in tests()
46 for (int j = 0; static_cast<std::size_t>(j) < c.size(); ++j) in tests() local
[all …]
/external/spdx-tools/rdfloader/parser2v3/
Dparse_snippet_info_test.go1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
9 "github.com/spdx/tools-golang/spdx/common"
10 "github.com/spdx/tools-golang/spdx/v2_3"
31 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
43 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
59 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
61 <spdx:File rdf:resource="http://anupam-VirtualBox/spdx.rdf#item8" />
73 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
85 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
97 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
[all …]
/external/spdx-tools/rdfloader/parser2v2/
Dparse_snippet_info_test.go1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
9 "github.com/spdx/tools-golang/spdx/common"
10 "github.com/spdx/tools-golang/spdx/v2_2"
31 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
43 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
59 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
61 <spdx:File rdf:resource="http://anupam-VirtualBox/spdx.rdf#item8" />
73 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
85 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
97 <spdx:Snippet rdf:about="#SPDXRef-Snippet">
[all …]
/external/libaom/aom_dsp/
Dblend_a64_mask.c28 // Thus, in order to avoid double-rounding, we want to use normal right shifts
33 // In contrast, the output of the non-d16 functions will not be further rounded,
41 int i, j; in aom_lowbd_blend_a64_d16_mask_c() local
43 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in aom_lowbd_blend_a64_d16_mask_c()
44 const int round_offset = (1 << (offset_bits - conv_params->round_1)) + in aom_lowbd_blend_a64_d16_mask_c()
45 (1 << (offset_bits - conv_params->round_1 - 1)); in aom_lowbd_blend_a64_d16_mask_c()
47 2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1; in aom_lowbd_blend_a64_d16_mask_c()
59 for (j = 0; j < w; ++j) { in aom_lowbd_blend_a64_d16_mask_c()
61 const int m = mask[i * mask_stride + j]; in aom_lowbd_blend_a64_d16_mask_c()
62 res = ((m * (int32_t)src0[i * src0_stride + j] + in aom_lowbd_blend_a64_d16_mask_c()
[all …]

12345678910>>...48