Home
last modified time | relevance | path

Searched refs:odd (Results 1 – 25 of 352) sorted by relevance

12345678910>>...15

/external/libxcam/cl_kernel/
Dkernel_wavelet_haar.cl51 line_ll = (row_l.odd + row_l.even) / 2.0f;
52 line_hl = (row_l.odd - row_l.even) / 2.0f;
53 line_lh = (row_h.odd + row_h.even) / 2.0f;
54 line_hh = (row_h.odd - row_h.even) / 2.0f;
59 line_ll.odd = (row_l.odd.odd + row_l.odd.even) / 2.0f;
60 line_hl.odd = (row_l.odd.odd - row_l.odd.even) / 2.0f;
61 line_lh.odd = (row_h.odd.odd + row_h.odd.even) / 2.0f;
62 line_hh.odd = (row_h.odd.odd - row_h.odd.even) / 2.0f;
65 line_ll.even = (row_l.even.odd + row_l.even.even) / 2.0f;
66 line_hl.even = (row_l.even.odd - row_l.even.even) / 2.0f;
[all …]
Dkernel_defog_dcp.cl32 uv_r.even = -0.001f * uv.even + 1.402f * uv.odd;
33 uv_r.odd = uv_r.even;
34 uv_g.even = -0.344f * uv.even - 0.714f * uv.odd;
35 uv_g.odd = uv_g.even;
36 uv_b.even = 1.772f * uv.even + 0.001f * uv.odd;
37 uv_b.odd = uv_b.even;
127 r = (in_r[0].even + in_r[0].odd + in_r[1].even + in_r[1].odd) * 0.25f;
128 g = (in_g[0].even + in_g[0].odd + in_g[1].even + in_g[1].odd) * 0.25f;
129 b = (in_b[0].even + in_b[0].odd + in_b[1].even + in_b[1].odd) * 0.25f;
131 out_data.odd = (0.5f * r - 0.419f * g - 0.081f * b) + 128.0f;
/external/opencv/cvaux/src/
Dcvvideo.cpp53 CvMat odd_stub, *odd = (CvMat*)fieldOdd; in cvDeInterlace() local
59 CV_CALL( odd = cvGetMat( odd, &odd_stub )); in cvDeInterlace()
61 if( !CV_ARE_TYPES_EQ( frame, even ) || !CV_ARE_TYPES_EQ( frame, odd )) in cvDeInterlace()
64 if( frame->cols != even->cols || frame->cols != odd->cols || in cvDeInterlace()
65 frame->rows != even->rows*2 || odd->rows != even->rows ) in cvDeInterlace()
75 memcpy( odd->data.ptr + even->step*y, in cvDeInterlace()
/external/eigen/Eigen/src/Geometry/
DEulerAngles.h48 const Index odd = ((a0+1)%3 == a1) ? 0 : 1; in eulerAngles() local
50 const Index j = (a0 + 1 + odd)%3; in eulerAngles()
51 const Index k = (a0 + 2 - odd)%3; in eulerAngles()
56 if((odd && res[0]<Scalar(0)) || ((!odd) && res[0]>Scalar(0))) in eulerAngles()
91 if((odd && res[0]<Scalar(0)) || ((!odd) && res[0]>Scalar(0))) { in eulerAngles()
106 if (!odd) in eulerAngles()
/external/llvm/test/MC/Mips/
Dupdate-module-level-options.s6 # CHECK: :[[@LINE-1]]:9: error: -mno-odd-spreg prohibits the use of odd FPU registers
10 # CHECK-NOT: :[[@LINE-1]]:{{[0-9]+}}: error: -mno-odd-spreg prohibits the use of odd FPU registers
14 # CHECK: :[[@LINE-1]]:9: error: -mno-odd-spreg prohibits the use of odd FPU registers
Dset-oddspreg-nooddspreg-error.s6 # CHECK-NOT: :[[@LINE-1]]:{{[0-9]+}}: error: -mno-odd-spreg prohibits the use of odd FPU registers
10 # CHECK: :[[@LINE-1]]:9: error: -mno-odd-spreg prohibits the use of odd FPU registers
Dnooddspreg-error.s9 # CHECK-ERROR: :[[@LINE-1]]:15: error: -mno-odd-spreg prohibits the use of odd FPU registers
10 # CHECK-ERROR: :[[@LINE-2]]:25: error: -mno-odd-spreg prohibits the use of odd FPU registers
/external/mesa3d/src/gallium/auxiliary/util/
Du_pwr8.h78 vec_unpacklo_epi32 (__m128i even, __m128i odd) in vec_unpacklo_epi32() argument
87 return vec_perm (even, odd, perm_mask); in vec_unpacklo_epi32()
91 vec_unpackhi_epi32 (__m128i even, __m128i odd) in vec_unpackhi_epi32() argument
100 return vec_perm (even, odd, perm_mask); in vec_unpackhi_epi32()
104 vec_unpacklo_epi64 (__m128i even, __m128i odd) in vec_unpacklo_epi64() argument
113 return vec_perm (even, odd, perm_mask); in vec_unpacklo_epi64()
117 vec_unpackhi_epi64 (__m128i even, __m128i odd) in vec_unpackhi_epi64() argument
126 return vec_perm (even, odd, perm_mask); in vec_unpackhi_epi64()
/external/zlib/src/
Dcrc32.c380 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
387 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
390 odd[n] = row;
395 gf2_matrix_square(even, odd);
398 gf2_matrix_square(odd, even);
404 gf2_matrix_square(even, odd);
414 gf2_matrix_square(odd, even);
416 crc1 = gf2_matrix_times(odd, crc1);
/external/python/cpython3/Modules/zlib/
Dcrc32.c380 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
387 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
390 odd[n] = row;
395 gf2_matrix_square(even, odd);
398 gf2_matrix_square(odd, even);
404 gf2_matrix_square(even, odd);
414 gf2_matrix_square(odd, even);
416 crc1 = gf2_matrix_times(odd, crc1);
/external/syslinux/com32/lib/zlib/
Dcrc32.c380 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
387 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
390 odd[n] = row;
395 gf2_matrix_square(even, odd);
398 gf2_matrix_square(odd, even);
404 gf2_matrix_square(even, odd);
414 gf2_matrix_square(odd, even);
416 crc1 = gf2_matrix_times(odd, crc1);
/external/python/cpython2/Modules/zlib/
Dcrc32.c363 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
370 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
373 odd[n] = row;
378 gf2_matrix_square(even, odd);
381 gf2_matrix_square(odd, even);
387 gf2_matrix_square(even, odd);
397 gf2_matrix_square(odd, even);
399 crc1 = gf2_matrix_times(odd, crc1);
/external/llvm/test/CodeGen/Mips/
Dno-odd-spreg-msa.ll12 ; Force the float into an odd-numbered register using named registers and
19 ; The intention is that if odd single precision registers are permitted, the
23 ; On the other hand, if odd single precision registers are not permitted, it
46 ; Force the float into an odd-numbered register using named registers and
53 ; The intention is that if odd single precision registers are permitted, the
57 ; On the other hand, if odd single precision registers are not permitted, it
85 ; The intention is that if odd single precision registers are permitted, the
88 ; On the other hand, if odd single precision registers are not permitted, it
113 ; The intention is that if odd single precision registers are permitted, the
116 ; On the other hand, if odd single precision registers are not permitted, it
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
DSPUNopFiller.cpp60 odd = 3 } SPUOpPlace; enumerator
93 if( isEvenPlace && this_optype == odd && next_optype == even ) { in runOnMachineBasicBlock()
102 else if ( !isEvenPlace && this_optype == even && next_optype == odd){ in runOnMachineBasicBlock()
119 if (getOpPlacement( *J ) == odd) { in runOnMachineBasicBlock()
146 case 1: retval = odd; break; in getOpPlacement()
/external/selinux/secilc/docs/
Dcil_user_statements.md21 <tr class="odd">
57 <tr class="odd">
65 <tr class="odd">
99 <tr class="odd">
135 <tr class="odd">
143 <tr class="odd">
193 <tr class="odd">
201 <tr class="odd">
239 <tr class="odd">
247 <tr class="odd">
[all …]
Dcil_xen_statements.md25 <tr class="odd">
35 <tr class="odd">
65 <tr class="odd">
75 <tr class="odd">
105 <tr class="odd">
113 <tr class="odd">
143 <tr class="odd">
151 <tr class="odd">
181 <tr class="odd">
189 <tr class="odd">
Dcil_role_statements.md21 <tr class="odd">
59 <tr class="odd">
67 <tr class="odd">
101 <tr class="odd">
137 <tr class="odd">
145 <tr class="odd">
201 <tr class="odd">
209 <tr class="odd">
237 <tr class="odd">
245 <tr class="odd">
[all …]
Dcil_mls_labeling_statements.md23 <tr class="odd">
59 <tr class="odd">
91 <tr class="odd">
99 <tr class="odd">
133 <tr class="odd">
176 <tr class="odd">
212 <tr class="odd">
240 <tr class="odd">
248 <tr class="odd">
280 <tr class="odd">
[all …]
Dcil_type_statements.md21 <tr class="odd">
57 <tr class="odd">
89 <tr class="odd">
97 <tr class="odd">
132 <tr class="odd">
166 <tr class="odd">
174 <tr class="odd">
235 <tr class="odd">
243 <tr class="odd">
290 <tr class="odd">
[all …]
Dcil_class_and_permission_statements.md21 <tr class="odd">
29 <tr class="odd">
59 <tr class="odd">
67 <tr class="odd">
99 <tr class="odd">
107 <tr class="odd">
159 <tr class="odd">
216 <tr class="odd">
248 <tr class="odd">
256 <tr class="odd">
[all …]
Dcil_container_statements.md24 <tr class="odd">
32 <tr class="odd">
64 <tr class="odd">
72 <tr class="odd">
80 <tr class="odd">
112 <tr class="odd">
120 <tr class="odd">
128 <tr class="odd">
219 <tr class="odd">
227 <tr class="odd">
[all …]
Dcil_conditional_statements.md21 <tr class="odd">
29 <tr class="odd">
66 <tr class="odd">
74 <tr class="odd">
88 <tr class="odd">
135 <tr class="odd">
143 <tr class="odd">
178 <tr class="odd">
186 <tr class="odd">
200 <tr class="odd">
/external/clang/test/Analysis/
DNewDelete-path-notes.cpp23 void test(Odd *odd) { in test() argument
24 odd->kill(); // expected-note{{Calling 'Odd::kill'}} in test()
26 delete odd; // expected-warning {{Attempt to free released memory}} in test()
/external/icu/icu4c/source/test/intltest/
Dtestidna.cpp1000 UChar odd[MAX_DEST_SIZE]; in testChaining() local
1013 memcpy(odd,expected,(expectedLen+1) * U_SIZEOF_UCHAR); in testChaining()
1017 evenLen = func(odd,-1,even,MAX_DEST_SIZE,options, &parseError, &status); in testChaining()
1023 oddLen = func(even,-1,odd,MAX_DEST_SIZE,options, &parseError, &status); in testChaining()
1032 u_strCaseCompare(odd,oddLen, expected,expectedLen, 0, &status) !=0 ){ in testChaining()
1038 u_strncmp(odd,expected,expectedLen) !=0 ){ in testChaining()
1050 memcpy(odd,expected,(expectedLen+1) * U_SIZEOF_UCHAR); in testChaining()
1054 … evenLen = func(odd,-1,even,MAX_DEST_SIZE,options|UIDNA_ALLOW_UNASSIGNED, &parseError, &status); in testChaining()
1060 … oddLen = func(even,-1,odd,MAX_DEST_SIZE,options|UIDNA_ALLOW_UNASSIGNED, &parseError, &status); in testChaining()
1069 u_strCaseCompare(odd,oddLen, expected,expectedLen, 0, &status) !=0 ){ in testChaining()
[all …]
/external/syslinux/core/lwip/src/core/ipv4/
Dinet_chksum.c140 int odd = ((mem_ptr_t)pb & 1); in lwip_standard_chksum() local
143 if (odd && len > 0) { in lwip_standard_chksum()
169 if (odd) { in lwip_standard_chksum()
198 int odd = ((mem_ptr_t)pb & 1); in lwip_standard_chksum() local
200 if (odd && len > 0) { in lwip_standard_chksum()
251 if (odd) { in lwip_standard_chksum()

12345678910>>...15