Searched defs:zero (Results 151 - 175 of 301) sorted by relevance

1234567891011>>

/external/kernel-headers/original/asm-mips/
H A Dregdef.h20 #define zero $0 /* wired zero */ macro
59 #define zero $0 /* wired zero */ macro
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.cpp263 bool BitSet::allocate(unsigned int nBits, bool zero) argument
274 if (zero)
/external/openfst/src/include/fst/script/
H A Dweight-class.h152 // We need to store zero and one as statics, because the weight type
155 static const W zero = W::Zero(); local
159 return &zero;
/external/openssl/crypto/bn/
H A Dbn_mul.c398 unsigned int neg,zero; local
433 zero=neg=0;
441 zero=1;
451 zero=1;
459 zero=1;
471 if (!zero)
483 if (!zero)
495 if (!zero)
600 /* The zero case isn't yet implemented here. The speedup
762 int neg,oneg,zero; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_image.c1009 PhPoint_t zero = {0, 0}; local
1013 PgSetTranslation(&zero, 0);
/external/valgrind/main/coregrind/
H A Dm_libcsignal.c338 not-pending-any-more. If none are pending, return zero. The _zero
339 refers to the fact that there is zero timeout, so if no signals are
356 static const struct vki_timespec zero = { 0, 0 }; local
358 (UWord)&zero, sizeof(*set));
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_thread2_unittest.cc87 TimeDelta zero() { return TimeDelta::FromSeconds(0); } function in class:browser_sync::SyncerThread2Test
113 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, nudge_types,
213 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, model_types,
230 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, model_types,
361 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, model_types,
400 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, types2,
415 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_NOTIFICATION, types3,
437 syncer_thread()->ScheduleNudgeWithPayloads(zero(), NUDGE_SOURCE_LOCAL,
453 syncer_thread()->ScheduleNudgeWithPayloads(zero(), NUDGE_SOURCE_LOCAL,
480 syncer_thread()->ScheduleNudgeWithPayloads(zero(), NUDGE_SOURCE_LOCA
[all...]
/external/chromium_org/sync/engine/
H A Dsync_scheduler_unittest.cc159 TimeDelta zero() { return TimeDelta::FromSeconds(0); } function in class:syncer::SyncSchedulerTest
202 scheduler()->ScheduleLocalNudge(zero(), nudge_types, FROM_HERE);
286 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE);
298 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE);
438 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE);
469 TimeDelta delay = zero();
472 scheduler()->ScheduleLocalNudge(zero(), types2, FROM_HERE);
484 scheduler()->ScheduleLocalNudge(zero(), types3, FROM_HERE);
502 scheduler()->ScheduleLocalNudge(zero(), types2, FROM_HERE);
527 scheduler()->ScheduleInvalidationNudge(zero(), invalidations
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioBus.cpp93 void AudioBus::zero() function in class:WebCore::AudioBus
96 m_channels[i]->zero();
295 channel(0)->zero();
296 channel(1)->zero();
297 channel(3)->zero();
298 channel(4)->zero();
299 channel(5)->zero();
302 zero();
391 channel(i)->zero();
415 zero();
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_rast_tri.c267 __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/
H A Dsp_quad_blend.c269 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 */
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_emit.cpp120 static float zero = 0.0; local
121 c->prog_data.param[slot] = &zero;
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapFilter_opts_SSE2.cpp191 __m128i zero = _mm_setzero_si128(); local
229 __m128i src16 = _mm_unpacklo_epi8(src8, zero);
247 src16 = _mm_unpackhi_epi8(src8, zero);
263 // the filter coefficient that was loaded incorrectly to zero; Other than
279 __m128i src16 = _mm_unpacklo_epi8(src8, zero);
287 src16 = _mm_unpackhi_epi8(src8, zero);
300 accum = _mm_packs_epi32(accum, zero);
302 accum = _mm_packus_epi16(accum, zero);
320 __m128i zero = _mm_setzero_si128(); local
358 src16 = _mm_unpacklo_epi8(src8, zero); \
443 __m128i zero = _mm_setzero_si128(); local
[all...]
H A DSkBitmapProcState_opts_SSSE3.cpp187 // pixels is zero (sub_y), and are therefore omitted here to save on some
417 const __m128i zero = _mm_setzero_si128(); local
482 sum = _mm_packus_epi16(sum, zero);
563 sum0 = _mm_packus_epi16(sum0, zero);
/external/chromium_org/v8/src/arm/
H A Dcodegen-arm.cc775 Label zero, infinity, done; local
781 __ b(ge, &zero);
827 __ bind(&zero);
/external/chromium_org/v8/src/mips/
H A Dcodegen-mips.cc542 Label zero, infinity, done; local
547 __ BranchF(&zero, NULL, ge, double_scratch1, input);
596 __ bind(&zero);
/external/dropbear/
H A Dkeyimport.c624 * The first integer should be zero always (I think
703 char zero[1]; local
738 numbers[0].start = zero; numbers[0].bytes = 1; zero[0] = '\0';
906 * padding bytes is always more than zero, and always at most
1332 errmsg = "Length of key data is zero";
/external/fdlibm/
H A De_pow.c71 zero = 0.0, variable
118 /* y==zero: x**0 = 1 */
152 return (hy>=0)? y: zero;
154 return (hy<0)?-y: zero;
230 t_h = zero;
288 t = zero;
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DMatrix3f.java697 * Where all values are zero except those along the diagonal which are one.
962 return store.zero();
987 return zero();
1062 * Sets all of the values in this matrix to zero.
1066 public Matrix3f zero() { method in class:Matrix3f
1239 * normalized non-zero starting vector
1241 * normalized non-zero ending vector
H A DVector2f.java421 * by zero will result in an exception.
626 * <code>zero</code> resets this vector's data to zero internally.
628 public Vector2f zero() { method in class:Vector2f
/external/kernel-headers/original/asm-arm/
H A Dtlbflush.h246 const int zero = 0; local
250 asm("mcr%? p15, 0, %0, c7, c10, 4" : : "r" (zero));
253 asm("mcr%? p15, 0, %0, c6, c0, 0" : : "r" (zero));
255 asm("mcr%? p15, 0, %0, c8, c7, 0" : : "r" (zero));
257 asm("mcr%? p15, 0, %0, c8, c6, 0" : : "r" (zero));
259 asm("mcr%? p15, 0, %0, c8, c5, 0" : : "r" (zero));
264 const int zero = 0; local
269 asm("mcr%? p15, 0, %0, c7, c10, 4" : : "r" (zero));
273 asm("mcr%? p15, 0, %0, c6, c0, 0" : : "r" (zero));
275 asm("mcr%? p15, 0, %0, c8, c7, 0" : : "r" (zero));
293 const int zero = 0; local
324 const int zero = 0; local
372 const unsigned int zero = 0; local
[all...]
/external/libppp/src/
H A Dipv6cp.c184 * "u" bit of the interface identifier MUST be set to zero (0).
664 u_char zero[IPV6CP_IFIDLEN]; local
666 memset(zero, 0, IPV6CP_IFIDLEN);
668 if (memcmp(ifid, zero, IPV6CP_IFIDLEN) != 0
689 u_char ifid[IPV6CP_IFIDLEN], zero[IPV6CP_IFIDLEN]; local
692 memset(zero, 0, IPV6CP_IFIDLEN);
714 if (memcmp(ifid, zero, IPV6CP_IFIDLEN) == 0) {
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast_tri.c267 __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/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_blend.c269 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 */
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_emit.cpp120 static float zero = 0.0; local
121 c->prog_data.param[slot] = &zero;

Completed in 799 milliseconds

1234567891011>>