/external/webkit/Source/WebCore/platform/audio/ |
Reverb.cpp | 140 destinationBus->zero(); 215 destinationBus->zero();
|
/external/webkit/Source/WebCore/platform/graphics/ |
IntPoint.h | 84 static IntPoint zero() { return IntPoint(); } function in class:WebCore::IntPoint 109 *this = expandedTo(zero());
|
FloatPoint.h | 74 static FloatPoint zero() { return FloatPoint(); } function in class:WebCore::FloatPoint
|
/external/webkit/Source/WebCore/webaudio/ |
AudioPannerNode.cpp | 94 destination->zero(); 101 destination->zero();
|
RealtimeAnalyser.cpp | 77 m_inputBuffer.zero(); 78 m_magnitudeBuffer.zero();
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
crypto_internal.c | 444 struct bignum *zero; local 470 zero = bignum_init(); 471 if (zero == NULL) 474 if (bignum_set_unsigned_bin(zero, hdr.payload, hdr.length) < 0) { 476 bignum_deinit(zero); 481 if (bignum_cmp_d(zero, 0) != 0) { 482 wpa_printf(MSG_DEBUG, "PKCS #8: Expected zero INTEGER in the " 485 bignum_deinit(zero); 488 bignum_deinit(zero); 582 * (BT=0: PS=0x00, BT=1: PS=0xff, BT=2: PS=pseudorandom non-zero) [all...] |
/frameworks/base/core/jni/ |
android_backup_BackupHelperDispatcher.cpp | 202 int zero = 0; local 203 err = write(fd, &zero, namePadding);
|
/external/webp/src/dec/ |
dsp_sse2.c | 195 const __m128i zero = _mm_set1_epi16(0); local 212 dst0 = _mm_unpacklo_epi8(dst0, zero); 213 dst1 = _mm_unpacklo_epi8(dst1, zero); 214 dst2 = _mm_unpacklo_epi8(dst2, zero); 215 dst3 = _mm_unpacklo_epi8(dst3, zero); 278 const __m128i zero = _mm_setzero_si128(); \ 287 not_hev = _mm_cmpeq_epi8(not_hev, zero); /* not_hev <= t1 && not_hev <= t2 */\ 328 t1 = _mm_and_si128(t1, *mask); // set lsb of each byte to zero 432 const __m128i zero = _mm_setzero_si128(); local 438 const __m128i f_lo = _mm_unpacklo_epi8(zero, f) [all...] |
/external/v8/src/ia32/ |
ic-ia32.cc | 76 __ j(zero, miss, not_taken); 438 __ j(zero, slow, not_taken); 517 __ j(zero, index_string, not_taken); 522 __ j(zero, not_symbol, not_taken); 549 __ j(zero, &check_number_dictionary, not_taken); 727 __ j(zero, &slow, not_taken); 772 __ j(zero, &slow, not_taken); 877 __ j(zero, &number, not_taken); [all...] |
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
ll.S | 109 # (how do we know ecx is zero?) 162 stosw # and zero 437 cmp $0,%al # is it zero? 461 cmpb $0,(%rcx,%rdx) # repeat till we find zero 481 # ah is zero from num_to_ascii 512 cmpb $0,(%rcx,%rdx) # repeat till zero 534 or %eax,%eax # was Q zero?
|
/external/valgrind/main/exp-bbv/tests/x86-linux/ |
ll.S | 101 # (how do we know ecx is zero?) 154 stosw # and zero 437 cmp $0,%al # is it zero? 461 cmpb $0,(%ecx,%edx) # repeat till we find zero 481 # ah is zero from num_to_ascii 512 cmpb $0,(%ecx,%edx) # repeat till zero 534 or %eax,%eax # was Q zero?
|
/packages/apps/Phone/src/com/android/phone/ |
EmergencyDialer.java | 285 View view = findViewById(R.id.zero); 379 case R.id.zero: { 426 case R.id.zero: {
|
/bootable/recovery/applypatch/ |
applypatch.sh | 250 echo run_command dd if=/dev/zero of=$WORK_DIR/bloat.dat count=$((free_kb-512)) bs=1024 || fail 251 run_command dd if=/dev/zero of=$WORK_DIR/bloat.dat count=$((free_kb-512)) bs=1024 || fail 281 run_command dd if=/dev/zero of=/cache/bloat_small.dat count=128 bs=1024 || fail 282 run_command dd if=/dev/zero of=/cache/bloat_large.dat count=$((free_kb-640)) bs=1024 || fail
|
/external/clang/test/SemaCXX/ |
null_in_arithmetic_ops.cpp | 17 // expected-warning {{division by zero is undefined}} 22 expected-warning {{remainder by zero is undefined}} 44 // expected-warning{{division by zero is undefined}} 49 // expected-warning{{remainder by zero is undefined}} 57 // expected-warning{{division by zero is undefined}} 62 // expected-warning{{remainder by zero is undefined}}
|
/external/libvpx/vp8/encoder/ppc/ |
sad_altivec.asm | 36 vspltisw v8, 0 ;# zero out total to start 261 vspltisw v8, 0 ;# zero out total to start
|
/external/libvpx/vp8/encoder/x86/ |
temporal_filter_apply_sse2.asm | 70 pxor xmm7, xmm7 ; zero for extraction 180 pxor xmm7, xmm7 ; zero for extraction
|
/external/openssl/crypto/ |
sparccpuid.S | 35 call .PIC.zero.up 36 mov .zero-(.-4),%o0 131 .zero: .long 0x0,0x0 132 .PIC.zero.up:
|
/external/v8/test/mjsunit/ |
math-abs.js | 30 function zero() { function 37 assertEquals(0, Math.abs(zero()));
|
math-floor.js | 30 function zero() { function 37 assertEquals(0, Math.floor(zero()));
|
math-min-max.js | 43 // Prepare a non-Smi zero value. 45 var ZERO = (function() { 55 assertEquals(0, ZERO); 56 assertEquals(Infinity, 1/ZERO); 57 assertEquals(-Infinity, 1/-ZERO); 58 // Here we would like to have assertFalse(%_IsSmi(ZERO)); This is, however, 60 // us into the runtime system, which would quite legitimately put a Smi zero 62 assertFalse(%_IsSmi(-ZERO)); 72 assertEquals(-Infinity, Infinity / Math.min(-0, ZERO)); 73 assertEquals(-Infinity, Infinity / Math.min(ZERO, -0)) [all...] |
toint32.js | 35 assertEquals(0, toInt32(0.0), "zero"); 36 assertEquals(0, toInt32(-0.0), "-zero");
|
/external/valgrind/main/exp-bbv/tests/arm-linux/ |
ll.S | 252 mov r0,#0 @ result is zero 308 cmp r3,#0 @ is it zero? 362 bne str_loop1 @ repeat till zero 389 bne div_by_10 @ if Q not zero, loop 411 mov r7,#0 @ zero out quotient
|
/external/valgrind/tsan/ |
Makefile | 17 -Wmissing-declarations -Wno-format-zero-length \
|
/frameworks/base/tools/obbtool/ |
mkobb.sh | 221 ${DDBIN} if=/dev/zero of=${tempfile} bs=${BLOCK_SIZE} count=$((${block_count} + ${SLOP})) > /dev/null 2>&1
|
/dalvik/vm/compiler/ |
Utility.cpp | 43 void * dvmCompilerNew(size_t size, bool zero) 52 if (zero) {
|