Searched defs:even (Results 1 - 25 of 31) sorted by relevance

12

/external/pdfium/fxbarcode/oned/
H A DBC_OnedEANChecksum.cpp11 int32_t even = 0; local
17 even += FXSYS_DecimalCharToInt(contents[i - 1]);
20 return (10 - (odd * 3 + even) % 10) % 10;
H A DBC_OnedUPCAWriter.cpp71 int32_t even = 0; local
77 even += FXSYS_DecimalCharToInt(contents[i - 1]);
81 int32_t checksum = (odd * 3 + even) % 10;
/external/libcxx/test/std/containers/sequences/list/list.ops/
H A Dremove_if.pass.cpp21 bool even(int i) function
48 Predicate cp(even);
/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dbitdepth_conversion_vsx.h36 const int32x4_t even = vec_mule(v, one); local
38 const int32x4_t high = vec_mergeh(even, odd);
39 const int32x4_t low = vec_mergel(even, odd);
/external/opencv/cvaux/src/
H A Dcvvideo.cpp38 // the use of this software, even if advised of the possibility of such damage.
52 CvMat even_stub, *even = (CvMat*)fieldEven; local
58 CV_CALL( even = cvGetMat( even, &even_stub ));
61 if( !CV_ARE_TYPES_EQ( frame, even ) || !CV_ARE_TYPES_EQ( frame, odd ))
64 if( frame->cols != even->cols || frame->cols != odd->cols ||
65 frame->rows != even->rows*2 || odd->rows != even->rows )
68 size = cvGetMatSize( even );
69 size.width *= CV_ELEM_SIZE( even
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DFieldLUDecompositionImpl.java53 private boolean even; field in class:FieldLUDecompositionImpl
91 even = true;
142 even = !even;
209 T determinant = even ? field.getOne() : field.getZero().subtract(field.getOne());
H A DLUDecompositionImpl.java48 private boolean even; field in class:LUDecompositionImpl
97 even = true;
152 even = !even;
218 double determinant = even ? 1 : -1;
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
H A DSPUNopFiller.cpp33 bool isEvenPlace; // the instruction slot (mem address) at hand is even/odd
59 even = 2, enumerator in enum:__anon22858::SPUNopFiller::__anon22859
69 // In the assebly we align the functions to 'even' adresses, but
71 // basic blocks to have the same, even, alignment.
91 // padd: odd(wrong), even(wrong), ...
92 // to: nop(corr), odd(corr), even(corr)...
93 if( isEvenPlace && this_optype == odd && next_optype == even ) {
100 // padd: even(wrong), odd(wrong), ...
101 // to: lnop(corr), even(corr), odd(corr)...
102 else if ( !isEvenPlace && this_optype == even
[all...]
/external/eigen/test/
H A Dhouseholder.cpp16 static bool even = true; local
17 even = !even;
56 if(even) v1.tail(rows-1).setZero();
67 if(even) v1.tail(rows-1).setZero();
/external/python/cpython2/Modules/zlib/
H A Dcrc32.c362 unsigned long even[GF2_DIM]; /* even-power-of-two zeros operator */ local
377 /* put operator for two zero bits in even */
378 gf2_matrix_square(even, odd);
381 gf2_matrix_square(odd, even);
384 zero byte, eight zero bits, in even) */
387 gf2_matrix_square(even, odd);
389 crc1 = gf2_matrix_times(even, crc1);
396 /* another iteration of the loop with odd and even swapped */
397 gf2_matrix_square(odd, even);
[all...]
/external/python/cpython3/Modules/zlib/
H A Dcrc32.c379 unsigned long even[GF2_DIM]; /* even-power-of-two zeros operator */ local
394 /* put operator for two zero bits in even */
395 gf2_matrix_square(even, odd);
398 gf2_matrix_square(odd, even);
401 zero byte, eight zero bits, in even) */
404 gf2_matrix_square(even, odd);
406 crc1 = gf2_matrix_times(even, crc1);
413 /* another iteration of the loop with odd and even swapped */
414 gf2_matrix_square(odd, even);
[all...]
/external/syslinux/com32/lib/zlib/
H A Dcrc32.c379 unsigned long even[GF2_DIM]; /* even-power-of-two zeros operator */ local
394 /* put operator for two zero bits in even */
395 gf2_matrix_square(even, odd);
398 gf2_matrix_square(odd, even);
401 zero byte, eight zero bits, in even) */
404 gf2_matrix_square(even, odd);
406 crc1 = gf2_matrix_times(even, crc1);
413 /* another iteration of the loop with odd and even swapped */
414 gf2_matrix_square(odd, even);
[all...]
/external/tensorflow/tensorflow/contrib/eager/python/
H A Ddatasets_test.py77 def even(x): function in function:IteratorTest.testMapAndFilter
80 it = datasets.Iterator(Dataset.range(8).map(math_ops.square).filter(even))
/external/zlib/src/
H A Dcrc32.c379 unsigned long even[GF2_DIM]; /* even-power-of-two zeros operator */ local
394 /* put operator for two zero bits in even */
395 gf2_matrix_square(even, odd);
398 gf2_matrix_square(odd, even);
401 zero byte, eight zero bits, in even) */
404 gf2_matrix_square(even, odd);
406 crc1 = gf2_matrix_times(even, crc1);
413 /* another iteration of the loop with odd and even swapped */
414 gf2_matrix_square(odd, even);
[all...]
/external/mesa3d/src/compiler/nir/
H A Dnir_lower_double_ops.c158 * When the exponent is even, this is equivalent to:
167 * inside the square root to be 1 if e is odd and 0 if e is even, and we
176 nir_ssa_def *even = nir_iand(b, unbiased_exp, nir_imm_int(b, 1)); local
181 even));
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pwr8.h78 vec_unpacklo_epi32 (__m128i even, __m128i odd) argument
87 return vec_perm (even, odd, perm_mask);
91 vec_unpackhi_epi32 (__m128i even, __m128i odd) argument
100 return vec_perm (even, odd, perm_mask);
104 vec_unpacklo_epi64 (__m128i even, __m128i odd) argument
113 return vec_perm (even, odd, perm_mask);
117 vec_unpackhi_epi64 (__m128i even, __m128i odd) argument
126 return vec_perm (even, odd, perm_mask);
/external/skia/bench/
H A DGameBench.cpp255 int even = (y / kCheckSize) % 2; local
260 if (even == (x / kCheckSize) % 2) {
/external/skqp/bench/
H A DGameBench.cpp255 int even = (y / kCheckSize) % 2; local
260 if (even == (x / kCheckSize) % 2) {
/external/libcups/filter/
H A Draster.c1994 unsigned char even, odd; /* Temporary variables */ local
2001 even = buf[0];
2004 buf[1] = even;
/external/eigen/Eigen/src/Core/arch/AVX/
H A DComplex.h284 __m256d even = _mm256_mul_pd(tmp1, b.v); local
288 return Packet2cd(_mm256_addsub_pd(even, odd));
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Druntime.py288 :attr:`even` -> `bool`
289 ``True`` when ``index`` is even.
321 def even(self): member in class:LoopContext
/external/icu/icu4c/source/test/intltest/
H A Dtestidna.cpp999 UChar even[MAX_DEST_SIZE]; local
1014 memcpy(even,expected,(expectedLen+1) * U_SIZEOF_UCHAR);
1017 evenLen = func(odd,-1,even,MAX_DEST_SIZE,options, &parseError, &status);
1023 oddLen = func(even,-1,odd,MAX_DEST_SIZE,options, &parseError, &status);
1031 if( u_strCaseCompare(even,evenLen, expected,expectedLen, 0, &status) !=0 ||
1037 if( u_strncmp(even,expected,expectedLen) != 0 ||
1051 memcpy(even,expected,(expectedLen+1) * U_SIZEOF_UCHAR);
1054 evenLen = func(odd,-1,even,MAX_DEST_SIZE,options|UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
1060 oddLen = func(even,-1,odd,MAX_DEST_SIZE,options|UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
1068 if( u_strCaseCompare(even,evenLe
[all...]
/external/skia/src/opts/
H A DSkNx_sse.h337 __m128i even = _mm_unpacklo_epi16(lo, hi), // r0 r2 g0 g2 b0 b2 a0 a2 local
339 __m128i rg = _mm_unpacklo_epi16(even, odd), // r0 r1 r2 r3 g0 g1 g2 g3
340 ba = _mm_unpackhi_epi16(even, odd); // b0 b1 ... a0 a1 ...
/external/skqp/src/opts/
H A DSkNx_sse.h330 __m128i even = _mm_unpacklo_epi16(lo, hi), // r0 r2 g0 g2 b0 b2 a0 a2 local
332 __m128i rg = _mm_unpacklo_epi16(even, odd), // r0 r1 r2 r3 g0 g1 g2 g3
333 ba = _mm_unpackhi_epi16(even, odd); // b0 b1 ... a0 a1 ...
/external/v8/src/compiler/arm64/
H A Dcode-generator-arm64.cc1218 int even = RoundUp(count, 2); local
1220 __ Sub(csp, csp, even * kPointerSize); // Must always be aligned.
1221 frame_access_state()->IncreaseSPDelta(even);

Completed in 4347 milliseconds

12