HomeSort by relevance Sort by last modified time
    Searched defs:even (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/pdfium/fxbarcode/oned/
BC_OnedEANChecksum.cpp 11 int32_t even = 0; local
17 even += FXSYS_DecimalCharToInt(contents[i - 1]);
20 return (10 - (odd * 3 + even) % 10) % 10;
BC_OnedUPCAWriter.cpp 71 int32_t even = 0; local
77 even += FXSYS_DecimalCharToInt(contents[i - 1]);
81 int32_t checksum = (odd * 3 + even) % 10;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
align.s 2 * .even == .align 1, .even 2 == longword boundary
4 * NOTE: .even is broken on TI tools, so theirs won't align .data
8 .global even, align2, align8, align128
12 .even
13 even .word 0x3 label
29 .even
  /external/libcxx/test/std/containers/sequences/list/list.ops/
remove_if.pass.cpp 21 bool even(int i) function
48 Predicate cp(even);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/list.ops/
remove_if.pass.cpp 21 bool even(int i) function
48 Predicate cp(even);
  /external/libvpx/libvpx/vpx_dsp/ppc/
bitdepth_conversion_vsx.h 36 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/
cvvideo.cpp 38 // 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->type )
    [all...]
  /external/tensorflow/tensorflow/contrib/eager/python/
datasets_test.py 77 def even(x): function in function:IteratorTest.testMapAndFilter
80 it = datasets.Iterator(Dataset.range(8).map(math_ops.square).filter(even))
  /build/make/tools/zipalign/
ZipEntry.cpp 364 time_t even; local
369 /* round up to an even number of seconds */
370 even = (time_t)(((unsigned long)(when) + 1) & (~1));
374 ptm = localtime_r(&even, &tmResult);
376 ptm = localtime(&even);
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUNopFiller.cpp 33 bool isEvenPlace; // the instruction slot (mem address) at hand is even/odd
59 even = 2, enumerator in enum:__anon36179::SPUNopFiller::__anon36180
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 && next_optype == odd)
    [all...]
  /frameworks/base/tools/aapt/
ZipEntry.cpp 345 time_t even; local
350 /* round up to an even number of seconds */
351 even = (time_t)(((unsigned long)(when) + 1) & (~1));
355 ptm = localtime_r(&even, &tmResult);
357 ptm = localtime(&even);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
crc32.c 362 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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
crc32.c 377 unsigned long even[GF2_DIM]; /* even-power-of-two zeros operator */ local
392 /* put operator for two zero bits in even */
393 gf2_matrix_square(even, odd);
396 gf2_matrix_square(odd, even);
399 zero byte, eight zero bits, in even) */
402 gf2_matrix_square(even, odd);
404 crc1 = gf2_matrix_times(even, crc1);
411 /* another iteration of the loop with odd and even swapped */
412 gf2_matrix_square(odd, even);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
crc32.c 379 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/eigen/test/
householder.cpp 16 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/
crc32.c 362 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/
crc32.c 379 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/
crc32.c 379 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/zlib/src/
crc32.c 379 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...]
  /toolchain/binutils/binutils-2.27/zlib/
crc32.c 362 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/apache-commons-math/src/main/java/org/apache/commons/math/linear/
FieldLUDecompositionImpl.java 53 private boolean even; field in class:FieldLUDecompositionImpl
91 even = true;
142 even = !even;
209 T determinant = even ? field.getOne() : field.getZero().subtract(field.getOne());
LUDecompositionImpl.java 48 private boolean even; field in class:LUDecompositionImpl
97 even = true;
152 even = !even;
218 double determinant = even ? 1 : -1;
  /external/mesa3d/src/compiler/nir/
nir_lower_double_ops.c 158 * 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/skia/bench/
GameBench.cpp 255 int even = (y / kCheckSize) % 2; local
260 if (even == (x / kCheckSize) % 2) {
  /external/skqp/bench/
GameBench.cpp 255 int even = (y / kCheckSize) % 2; local
260 if (even == (x / kCheckSize) % 2) {

Completed in 1426 milliseconds

1 2 3 4 5