/external/jemalloc/src/ |
chunk.c | 45 size_t alignment, bool base, bool *zero) 82 *zero = true; 122 if (*zero) { 138 * If the caller specifies (*zero == false), it is still possible to receive 139 * zeroed memory, in which case *zero is toggled to true. arena_chunk_alloc() 144 chunk_alloc_core(size_t size, size_t alignment, bool base, bool *zero, 157 alignment, base, zero)) != NULL) 159 if ((ret = chunk_alloc_dss(size, alignment, zero)) != NULL) 164 alignment, base, zero)) != NULL) 166 if ((ret = chunk_alloc_mmap(size, alignment, zero)) != NULL 218 bool zero; local [all...] |
/external/llvm/tools/yaml2obj/ |
yaml2elf.cpp | 93 static void zero(T &Obj) { function 158 zero(Header); 185 // Ensure SHN_UNDEF entry is present. An all-zero section header is a 188 zero(SHeader); 196 zero(SHeader); 241 zero(SHeader); 253 zero(Sym); 279 zero(SHeader); 293 zero(Symbol); 305 } // else Symbol.st_shndex == SHN_UNDEF (== 0), since it was zero'd earlier [all...] |
/external/ltrace/ |
value.c | 453 int zero = 1; local 457 zero = 0; 461 return zero;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_vec4_emit.cpp | 120 static float zero = 0.0; local 121 c->prog_data.param[slot] = &zero;
|
/external/openfst/src/include/fst/ |
sparse-tuple-weight.h | 96 static const SparseTupleWeight<W, K> &Zero() { 97 static SparseTupleWeight<W, K> zero; local 98 return zero; 169 Init(W::Zero()); 212 // Assumed default value of uninitialized keys, by default W::Zero()
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_lgammaf_r.c | 90 static const float zero= 0.0000000000e+00; variable 114 y = zero; n = 0; /* y must be even */ 150 if(ix==0) return one/zero; 159 return one/zero; 161 if(t==zero) return one/zero; /* -integer */ 163 if(t<zero) *signgamp = -1; 177 r = zero;
|
/bootable/recovery/mtdutils/ |
mtdutils.c | 507 // Zero-pad and write any pending data to get us to a block boundary 509 size_t zero = ctx->partition->erase_size - ctx->stored; local 510 memset(ctx->buffer + ctx->stored, 0, zero);
|
/cts/tests/tests/util/src/android/util/cts/ |
RationalTest.java | 111 // Zero is always equal to itself 113 assertEquals(ZERO, zero2); 114 assertEquals(zero2, ZERO); 165 Rational zero = new Rational(0, -100); local 166 assertEquals(0, zero.getNumerator()); 167 assertEquals(1, zero.getDenominator()); 168 assertEquals(ZERO, zero); 189 assertGreaterThan(NaN, ZERO); 195 assertGreaterThan(POSITIVE_INFINITY, ZERO); [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
AbsSeekBarTest.java | 70 final int zero = 0; local 75 myAbsSeekBar.setThumbOffset(zero); 76 assertEquals(zero, myAbsSeekBar.getThumbOffset());
|
/external/ceres-solver/internal/ceres/ |
rotation_test.cc | 197 // Transforms a zero axis/angle to a quaternion. 370 // Transforms a zero axis/angle to a rotation matrix. 551 // Takes a bunch of random axis/angle values near zero, converts them 617 // Also test zero rotation. 706 Jet<double, N> d, zero; local 767 // Test that derivatives are correct for zero rotation. [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
AudioBus.cpp | 96 void AudioBus::zero() function in class:blink::AudioBus 99 m_channels[i]->zero(); 298 channel(0)->zero(); 299 channel(1)->zero(); 300 channel(3)->zero(); 301 channel(4)->zero(); 302 channel(5)->zero(); 305 zero(); 394 channel(i)->zero(); 418 zero(); [all...] |
/external/chromium_org/third_party/libyuv/util/ |
ssim.cc | 81 // small errors are possible, due to rounding. Clamp to zero. 215 const __m128i zero = _mm_setzero_si128(); local 216 __m128i x = zero; 217 __m128i y = zero; 218 __m128i xx = zero; 219 __m128i xy = zero; 220 __m128i yy = zero; 229 const __m128i w0 = _mm_unpacklo_epi8(v0, zero); \ 230 const __m128i w1 = _mm_unpacklo_epi8(v1, zero); \ 233 x = _mm_add_epi32(x, _mm_unpacklo_epi16(ww0, zero)); \ [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_bld_depth.c | 210 res = bld->zero; 221 res = lp_build_max(bld, res, bld->zero); 426 * Test the depth mask. Add the number of channel which has none zero mask 690 LLVMValueRef zero = lp_build_const_int32(gallivm, 0); local 693 front_facing = LLVMBuildICmp(builder, LLVMIntNE, face, zero, "");
|
lp_rast_tri.c | 267 __m128i zero = _mm_setzero_si128(); local 282 transpose4_epi32(&p0, &p1, &p2, &zero, 287 dcdx = _mm_sub_epi32(zero, dcdx); 300 transpose4_epi32(&zero, &dcdx, &dcdx2, &dcdx3, 377 __m128i zero = _mm_setzero_si128(); local 391 transpose4_epi32(&p0, &p1, &p2, &zero, 396 dcdx = _mm_sub_epi32(zero, dcdx); 407 transpose4_epi32(&zero, &dcdx, &dcdx2, &dcdx3,
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_quad_blend.c | 269 static const float zero[4] = { 0, 0, 0, 0 }; local 355 VEC4_COPY(source[0], zero); /* R */ 356 VEC4_COPY(source[1], zero); /* G */ 357 VEC4_COPY(source[2], zero); /* B */ 480 VEC4_COPY(source[3], zero); /* A */ 597 VEC4_COPY(blend_dest[0], zero); /* R */ 598 VEC4_COPY(blend_dest[1], zero); /* G */ 599 VEC4_COPY(blend_dest[2], zero); /* B */ 728 VEC4_COPY(blend_dest[3], zero); /* A */ [all...] |
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/ |
armSP_FFTInv_CCSToR_S16_preTwiddleRadix2_unsafe_s.S | 69 #define zero r14 define
|
omxSP_FFTFwd_RToCCS_F32_Sfs_s.S | 88 #define zero r9 define 155 MOV zero,#0 156 VMOV dzero[0],zero 157 VMOV dZero[0],zero 270 MOV zero,#0 271 VMOV dX0r[1],zero 273 VMOV dX0i[1],zero 287 VDUP dzero,zero
|
omxSP_FFTFwd_RToCCS_S32_Sfs_s.S | 102 #define zero r9 define 170 MOV zero,#0 172 VMOV dzero[0],zero 174 VMOV dZero[0],zero 413 MOV zero,#0 414 VMOV dX0r[1],zero 416 VMOV dX0i[1],zero 429 VDUP dzero,zero
|
omxSP_FFTInv_CCSToR_F32_Sfs_s.S | 93 #define zero r14 define
|
omxSP_FFTInv_CCSToR_S16_Sfs_s.S | 83 #define zero r14 define 148 @ evenOddButterflyLoop in the first call would set Z flag to zero
|
omxSP_FFTInv_CCSToR_S32_Sfs_s.S | 110 #define zero r14 define 187 @// evenOddButterflyLoop in the first call would set Z flag to zero
|
/external/chromium_org/third_party/skia/src/opts/ |
SkBitmapProcState_opts_SSE2.cpp | 52 __m128i zero = _mm_setzero_si128(); local 80 a00a10 = _mm_unpacklo_epi8(a00a10, zero); 92 a01a11 = _mm_unpacklo_epi8(a01a11, zero); 113 sum = _mm_packus_epi16(sum, zero); 158 __m128i zero = _mm_setzero_si128(); local 190 a00a10 = _mm_unpacklo_epi8(a00a10, zero); 202 a01a11 = _mm_unpacklo_epi8(a01a11, zero); 229 sum = _mm_packus_epi16(sum, zero); 679 __m128i zero = _mm_setzero_si128(); local 708 a00a10 = _mm_unpacklo_epi8(a00a10, zero); [all...] |
/external/chromium_org/v8/src/arm/ |
codegen-arm.cc | 802 Label zero, infinity, done; local 808 __ b(ge, &zero); 854 __ bind(&zero);
|
/external/chromium_org/v8/src/mips/ |
codegen-mips.cc | 1105 Label zero, infinity, done; local [all...] |
/external/chromium_org/v8/src/mips64/ |
codegen-mips64.cc | 994 Label zero, infinity, done; local [all...] |