Home
last modified time | relevance | path

Searched refs:odd (Results 1 - 25 of 75) sorted by relevance

123

/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/
H A DOS2Tests.java83 private static EnumSet<UnicodeRange> makeUnicodeRangeSet(boolean odd) { in makeUnicodeRangeSet() argument
87 if (odd) { in makeUnicodeRangeSet()
90 odd = odd ? false : true; in makeUnicodeRangeSet()
95 private static EnumSet<CodePageRange> makeCodePageRangeSet(boolean odd) { in makeCodePageRangeSet() argument
99 if (odd) { in makeCodePageRangeSet()
102 odd = odd ? false : true; in makeCodePageRangeSet()
/third_party/mesa3d/src/gallium/auxiliary/util/
H A 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()
/third_party/ffmpeg/libavutil/x86/
H A Dtx_float.asm137 ; %2 - odd coefficients (r1.reim, r3.reim, r5.reim, r7.reim)
152 shufps %2, %2, %2, q1320 ; b1234 odd
158 ; %3 - odd coefficients (a1.reim, a3.reim, [b1.reim, b3.reim])
159 ; %4 - odd coefficients (a5.reim, a7.reim, [b5.reim, b7.reim])
192 subps %4, %3, %5 ; u1234 odd
195 addps %3, %3, %5 ; o1234 odd
200 ; %2 - odd coefficients (r1.reim, r3.reim, r5.reim, r7.reim)
232 addps %2, %3, %2 ; u1234, u5678 odd
238 ; %3 - odd coefficients (r1.reim, r3.reim, r5.reim, r7.reim)
239 ; %4 - odd coefficient
[all...]
/third_party/libwebsockets/win32port/zlib/
H A Dcrc32.c378 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
384 /* put operator for one zero bit in odd */
385 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
388 odd[n] = row;
393 gf2_matrix_square(even, odd);
395 /* put operator for four zero bits in odd */
396 gf2_matrix_square(odd, even);
402 gf2_matrix_square(even, odd);
411 /* another iteration of the loop with odd an
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dcrc32.c434 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
440 /* put operator for one zero bit in odd */
441 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
444 odd[n] = row;
449 gf2_matrix_square(even, odd);
451 /* put operator for four zero bits in odd */
452 gf2_matrix_square(odd, even);
458 gf2_matrix_square(even, odd);
467 /* another iteration of the loop with odd an
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dcrc32.c434 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
440 /* put operator for one zero bit in odd */
441 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
444 odd[n] = row;
449 gf2_matrix_square(even, odd);
451 /* put operator for four zero bits in odd */
452 gf2_matrix_square(odd, even);
458 gf2_matrix_square(even, odd);
467 /* another iteration of the loop with odd an
[all...]
/third_party/musl/src/math/
H A D__tan.c15 * Input odd indicates whether tan (if odd = 0) or -1/tan (if odd = 1) is returned.
20 * odd polynomial is not evaluated in a way that preserves -0.
22 * 3. tan(x) is approximated by a odd polynomial of degree 27 on
66 double __tan(double x, double y, int odd) in __tan() argument
97 s = 1 - 2*odd; in __tan()
101 if (!odd) in __tan()
H A D__tandf.c28 float __tandf(double x, int odd) in __tandf() argument
53 return odd ? -1.0/r : r; in __tandf()
H A D__tanl.c101 long double __tanl(long double x, long double y, int odd) { in __tanl() argument
124 s = 1 - 2*odd; in __tanl()
128 if (!odd) in __tanl()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A D__tan.c15 * Input odd indicates whether tan (if odd = 0) or -1/tan (if odd = 1) is returned.
20 * odd polynomial is not evaluated in a way that preserves -0.
22 * 3. tan(x) is approximated by a odd polynomial of degree 27 on
66 double __tan(double x, double y, int odd) in __tan() argument
97 s = 1 - 2*odd; in __tan()
101 if (!odd) in __tan()
H A D__tandf.c28 float __tandf(double x, int odd) in __tandf() argument
53 return odd ? -1.0/r : r; in __tandf()
H A D__tanl.c101 long double __tanl(long double x, long double y, int odd) { in __tanl() argument
124 s = 1 - 2*odd; in __tanl()
128 if (!odd) in __tanl()
/third_party/ltp/tools/sparse/sparse-src/validation/parsing/
H A Denum-attr.c9 enum odd { enum
10 odd = __attr 33, enumerator
/third_party/node/test/parallel/
H A Dtest-crypto-dh-odd-key.js31 const odd = Buffer.alloc(39, 'A');
34 c.setPrivateKey(odd);
/third_party/optimized-routines/math/
H A Dv_cos.c53 v_u64_t odd, cmp; in cos() local
60 odd = v_as_u64_f64 (n) << 63; in cos()
80 y = v_as_f64_u64 (v_as_u64_f64 (y) ^ odd); in cos()
H A Dv_cosf.c45 v_u32_t odd, cmp; in cosf() local
52 odd = v_as_u32_f32 (n) << 31; in cosf()
69 y = v_as_f32_u32 (v_as_u32_f32 (y) ^ odd); in cosf()
H A Dv_sin.c52 v_u64_t sign, odd, cmp; in sin() local
60 odd = v_as_u64_f64 (n) << 63; in sin()
79 y = v_as_f64_u64 (v_as_u64_f64 (y) ^ sign ^ odd); in sin()
H A Dv_sinf.c44 v_u32_t sign, odd, cmp; in sinf() local
52 odd = v_as_u32_f32 (n) << 31; in sinf()
68 y = v_as_f32_u32 (v_as_u32_f32 (y) ^ sign ^ odd); in sinf()
/third_party/icu/icu4c/source/test/intltest/
H A Dtestidna.cpp1004 UChar odd[MAX_DEST_SIZE]; in testChaining() local
1017 memcpy(odd,expected,(expectedLen+1) * U_SIZEOF_UCHAR); in testChaining()
1021 evenLen = func(odd,-1,even,MAX_DEST_SIZE,options, &parseError, &status); in testChaining()
1027 oddLen = func(even,-1,odd,MAX_DEST_SIZE,options, &parseError, &status); in testChaining()
1036 u_strCaseCompare(odd,oddLen, expected,expectedLen, 0, &status) !=0 ){ in testChaining()
1042 u_strncmp(odd,expected,expectedLen) !=0 ){ in testChaining()
1054 memcpy(odd,expected,(expectedLen+1) * U_SIZEOF_UCHAR); in testChaining()
1058 evenLen = func(odd,-1,even,MAX_DEST_SIZE,options|UIDNA_ALLOW_UNASSIGNED, &parseError, &status); in testChaining()
1064 oddLen = func(even,-1,odd,MAX_DEST_SIZE,options|UIDNA_ALLOW_UNASSIGNED, &parseError, &status); in testChaining()
1073 u_strCaseCompare(odd,oddLe in testChaining()
[all...]
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_attributes.c36 /* Given an odd number (of the form 2k + 1), compute k */
37 #define ODD(odd) ((odd - 1) >> 1)
/third_party/lwip/src/core/
H A Dinet_chksum.c87 /* dataptr may be at odd or even addresses */ in lwip_standard_chksum()
139 int odd = ((mem_ptr_t)pb & 1); in lwip_standard_chksum() local
142 if (odd && len > 0) { in lwip_standard_chksum()
167 /* Swap if alignment was odd */ in lwip_standard_chksum()
168 if (odd) { in lwip_standard_chksum()
182 * @arg start of buffer to be checksummed. May be an odd byte address.
196 /* starts at odd byte address? */ in lwip_standard_chksum()
197 int odd = ((mem_ptr_t)pb & 1); in lwip_standard_chksum() local
199 if (odd && len > 0) { in lwip_standard_chksum()
239 if (len > 0) { /* include odd byt in lwip_standard_chksum()
[all...]
/third_party/mesa3d/src/amd/vulkan/radix_sort/
H A Dradix_sort_vk.h83 VkPipelineLayout odd; member
89 VkPipeline odd; member
206 // keyvals_size : Minimum size of the even and odd keyval buffers
215 // .keyvals_even/odd
265 // will be found in the "odd" keyvals buffer.
325 // will be found in the "odd" keyvals buffer.
H A Dradix_sort_vk.c155 duoni.objectHandle = (uint64_t)rs->pipelines.named.scatter[0].odd; in rs_debug_utils_set()
165 duoni.objectHandle = (uint64_t)rs->pipelines.named.scatter[1].odd; in rs_debug_utils_set()
184 2 * rs->config.keyval_dwords; // scatters.even/odd[keyval_dwords] in rs_pipeline_count()
311 RS_SUBGROUP_SIZE_CREATE_INFO_NAME(scatter), // scatter[0].odd in radix_sort_vk_create()
313 RS_SUBGROUP_SIZE_CREATE_INFO_NAME(scatter), // scatter[1].odd in radix_sort_vk_create()
342 RS_COMPUTE_PIPELINE_CREATE_INFO_DECL(5), // scatter[0].odd in radix_sort_vk_create()
344 RS_COMPUTE_PIPELINE_CREATE_INFO_DECL(7), // scatter[1].odd in radix_sort_vk_create()
636 // because the even/odd scatter dispatches rely on the the previous pass to in radix_sort_vk_sort_devaddr()
790 : rs->pipeline_layouts.named.scatter[pass_dword].odd; in radix_sort_vk_sort_devaddr()
802 : rs->pipelines.named.scatter[pass_dword].odd; in radix_sort_vk_sort_devaddr()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/compute/
H A DvktComputeZeroInitializeWorkgroupMemoryTests.cpp1161 RepeatedPipelineInstance(Context& context, deUint32 xSize, deUint32 repeat, deUint32 odd) in RepeatedPipelineInstance() argument
1165 m_odd(odd) in RepeatedPipelineInstance()
1181 deUint32 xSize, deUint32 repeat, deUint32 odd) in RepeatedPipelineTest()
1185 m_odd(odd) in RepeatedPipelineTest()
1393 deUint32 odd = odds[j]; in AddRepeatedPipelineTests() local
1398 std::string("x_") + de::toString(x) + (odd == 1 ? "_odd" : "_even") + "_repeat_" + de::toString(repeat), in AddRepeatedPipelineTests()
1399 std::string("x_") + de::toString(x) + (odd == 1 ? "_odd" : "_even") + "_repeat_" + de::toString(repeat), in AddRepeatedPipelineTests()
1400 x, odd, repeat)); in AddRepeatedPipelineTests()
1178 RepeatedPipelineTest(tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 xSize, deUint32 repeat, deUint32 odd) RepeatedPipelineTest() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
H A DvktComputeZeroInitializeWorkgroupMemoryTests.cpp1158 RepeatedPipelineInstance (Context& context, deUint32 xSize, deUint32 repeat, deUint32 odd) in RepeatedPipelineInstance() argument
1162 , m_odd (odd) in RepeatedPipelineInstance()
1177 deUint32 xSize, deUint32 repeat, deUint32 odd, in RepeatedPipelineTest()
1182 , m_odd (odd) in RepeatedPipelineTest()
1393 deUint32 odd = odds[j]; in AddRepeatedPipelineTests() local
1398 std::string("x_") + de::toString(x) + (odd == 1 ? "_odd" : "_even") + "_repeat_" + de::toString(repeat), in AddRepeatedPipelineTests()
1399 x, odd, repeat, computePipelineConstructionType)); in AddRepeatedPipelineTests()
1175 RepeatedPipelineTest(tcu::TestContext& testCtx, const std::string& name, deUint32 xSize, deUint32 repeat, deUint32 odd, const vk::ComputePipelineConstructionType computePipelineConstructionType) RepeatedPipelineTest() argument

Completed in 16 milliseconds

123