Searched defs:odd (Results 1 - 25 of 36) sorted by relevance

12

/external/clang/test/Analysis/
H A DNewDelete-path-notes.cpp23 void test(Odd *odd) { argument
24 odd->kill(); // expected-note{{Calling 'Odd::kill'}}
26 delete odd; // expected-warning {{Attempt to free released memory}}
/external/eigen/Eigen/src/Geometry/
H A DEulerAngles.h48 const Index odd = ((a0+1)%3 == a1) ? 0 : 1; local
50 const Index j = (a0 + 1 + odd)%3;
51 const Index k = (a0 + 2 - odd)%3;
56 if((odd && res[0]<Scalar(0)) || ((!odd) && res[0]>Scalar(0)))
91 if((odd && res[0]<Scalar(0)) || ((!odd) && res[0]>Scalar(0))) {
106 if (!odd)
/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dbitdepth_conversion_vsx.h37 const int32x4_t odd = vec_mulo(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.cpp53 CvMat odd_stub, *odd = (CvMat*)fieldOdd; local
59 CV_CALL( odd = cvGetMat( odd, &odd_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 )
75 memcpy( odd->data.ptr + even->step*y,
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
H A DSPUNopFiller.cpp33 bool isEvenPlace; // the instruction slot (mem address) at hand is even/odd
60 odd = 3 } SPUOpPlace; enumerator in enum:__anon18763::SPUNopFiller::__anon18764
75 assert( isEvenPlace && "basic block start from odd address");
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){
119 if (getOpPlacement( *J ) == odd) {
[all...]
/external/syslinux/com32/lib/zlib/
H A Dcrc32.c380 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
386 /* put operator for one zero bit in odd */
387 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
390 odd[n] = row;
395 gf2_matrix_square(even, odd);
397 /* put operator for four zero bits in odd */
398 gf2_matrix_square(odd, even);
404 gf2_matrix_square(even, odd);
413 /* another iteration of the loop with odd an
[all...]
/external/syslinux/core/lwip/src/core/ipv4/
H A Dinet_chksum.c88 /* dataptr may be at odd or even addresses */
140 int odd = ((mem_ptr_t)pb & 1); local
143 if (odd && len > 0) {
168 /* Swap if alignment was odd */
169 if (odd) {
183 * @arg start of buffer to be checksummed. May be an odd byte address.
197 /* starts at odd byte address? */
198 int odd = ((mem_ptr_t)pb & 1); local
200 if (odd && len > 0) {
240 if (len > 0) { /* include odd byt
[all...]
/external/zlib/src/
H A Dcrc32.c363 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
369 /* put operator for one zero bit in odd */
370 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
373 odd[n] = row;
378 gf2_matrix_square(even, odd);
380 /* put operator for four zero bits in odd */
381 gf2_matrix_square(odd, even);
387 gf2_matrix_square(even, odd);
396 /* another iteration of the loop with odd an
[all...]
/external/pdfium/third_party/zlib_v128/
H A Dcrc32.c363 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
369 /* put operator for one zero bit in odd */
370 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
373 odd[n] = row;
378 gf2_matrix_square(even, odd);
380 /* put operator for four zero bits in odd */
381 gf2_matrix_square(odd, even);
387 gf2_matrix_square(even, odd);
396 /* another iteration of the loop with odd an
[all...]
/external/pdfium/xfa/fxbarcode/oned/
H A DBC_OnedEAN13Writer.cpp79 int32_t odd = 0; local
84 odd += FXSYS_atoi(contents.Mid(i, 1).c_str());
90 int32_t checksum = (odd * 3 + even) % 10;
H A DBC_OnedEAN8Writer.cpp82 int32_t odd = 0; local
87 odd += FXSYS_atoi(contents.Mid(i, 1).c_str());
93 int32_t checksum = (odd * 3 + even) % 10;
H A DBC_OnedUPCAWriter.cpp68 int32_t odd = 0; local
73 odd += FXSYS_atoi(contents.Mid(i, 1).c_str());
79 int32_t checksum = (odd * 3 + even) % 10;
/external/pdfium/xfa/fxbarcode/pdf417/
H A DBC_PDF417HighLevelEncoder.cpp251 bool odd = (i % 2) != 0; local
252 if (odd) {
/external/libcups/filter/
H A Draster.c1994 unsigned char even, odd; /* Temporary variables */ local
2002 odd = buf[1];
2003 buf[0] = odd;
/external/eigen/Eigen/src/Core/arch/AVX/
H A DComplex.h287 __m256d odd = _mm256_mul_pd(tmp2, tmp3); local
288 return Packet2cd(_mm256_addsub_pd(even, odd));
/external/emma/core/java12/com/vladium/emma/report/html/
H A DReportGenerator.java282 boolean odd = true;
284 for (Iterator packages = item.getChildren (order); packages.hasNext (); odd = ! odd)
300 addItemRow (pkg, odd, childSummaryTable, headerColumns, childHREF, false);
399 boolean odd = true;
401 for (Iterator srcORclsFiles = item.getChildren (order); srcORclsFiles.hasNext (); odd = ! odd)
417 addItemRow (srcORcls, odd, childSummaryTable, headerColumns, childHREF, false);
559 boolean odd = false;
561 for (Iterator methods = cls.getChildren (order2); methods.hasNext (); odd
900 addItemRow(final IItem item, final boolean odd, final HTMLTable table, final int [] columns, final String nameHREF, final boolean anchor) argument
1024 addClassItemRow(final IItem item, final boolean odd, final HTMLTable table, final int [] columns, final String nameHREF, final boolean anchor) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtestidna.cpp999 UChar odd[MAX_DEST_SIZE]; local
1012 memcpy(odd,expected,(expectedLen+1) * U_SIZEOF_UCHAR);
1016 evenLen = func(odd,-1,even,MAX_DEST_SIZE,options, &parseError, &status);
1022 oddLen = func(even,-1,odd,MAX_DEST_SIZE,options, &parseError, &status);
1031 u_strCaseCompare(odd,oddLen, expected,expectedLen, 0, &status) !=0 ){
1037 u_strncmp(odd,expected,expectedLen) !=0 ){
1049 memcpy(odd,expected,(expectedLen+1) * U_SIZEOF_UCHAR);
1053 evenLen = func(odd,-1,even,MAX_DEST_SIZE,options|UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
1059 oddLen = func(even,-1,odd,MAX_DEST_SIZE,options|UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
1068 u_strCaseCompare(odd,oddLe
[all...]
/external/skia/src/opts/
H A DSkNx_sse.h266 odd = _mm_unpackhi_epi16(lo, hi); // r1 r3 ... local
267 __m128i rg = _mm_unpacklo_epi16(even, odd), // r0 r1 r2 r3 g0 g1 g2 g3
268 ba = _mm_unpackhi_epi16(even, odd); // b0 b1 ... a0 a1 ...
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_arit.c2521 LLVMValueRef even = NULL, odd = NULL; local
2535 * Calculate odd and even terms seperately to decrease data dependency
2553 if (odd)
2554 odd = lp_build_add(bld, coeff, lp_build_mul(bld, x2, odd));
2556 odd = coeff;
2560 if (odd)
2561 return lp_build_add(bld, lp_build_mul(bld, odd, x), even);
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMAsmPrinter.cpp245 bool odd = SReg & 0x1; local
254 if (odd) {
429 // that overlaps the 's' register. Also, s0 is an odd register, hence the
430 // odd modulus check below.
/external/icu/icu4c/source/test/cintltst/
H A Dcbiditst.c1152 UBool odd; local
1195 odd=(UBool)ubidi_getVisualRun(pBiDi, i, &logicalStart, &runLength);
1196 log_verbose(" (%c @%d[%d])", odd ? 'R' : 'L', logicalStart, runLength);
1197 if(UBIDI_LTR==odd) {
2078 /* test even and odd paraLevel */
/external/v8/src/regexp/
H A Djsregexp.cc1822 // odd_label is for ranges[i] to ranges[i + 1] where i - start_index is odd.
1889 bool odd = (((cut_index - start_index) & 1) == 1); local
1890 Label* in_range_label = odd ? odd_label : even_label;
1978 // character is in the range between an even and an odd boundary (counting from
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/guice/lib/build/jdiff/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 635 milliseconds

12