HomeSort by relevance Sort by last modified time
    Searched refs:exponent (Results 176 - 200 of 271) sorted by null

1 2 3 4 5 6 78 91011

  /packages/apps/Gallery2/tests/src/com/android/gallery3d/glrenderer/
GLStub.java 743 int[] exponent,
749 java.nio.IntBuffer exponent
  /external/icu4c/i18n/
decNumber.h 83 int32_t exponent; /* Unadjusted exponent, unbiased, in */ member in struct:__anon8657
  /bionic/libc/stdio/
vfprintf.c 121 static int exponent(char *, int, int);
189 int expt; /* integer value of exponent */
192 char expstr[7]; /* buffer for exponent string */
537 expsize = exponent(expstr, expt, ch);
1271 exponent(char *p0, int exp, int fmtch) function
  /external/v8/src/x64/
code-stubs-x64.cc 611 // Get double and extract exponent.
616 // Double to remove sign bit, shift exponent down to least significant bits.
617 // and subtract bias to get the unshifted, unbiased exponent.
621 // Check whether the exponent is too big for a 63 bit unsigned integer.
624 // Handle exponent range 0..62.
629 // Exponent negative or 63+.
631 // If exponent negative or above 83, number contains no significant bits in
635 // Exponent in rage 63..83.
636 // Mantissa * 2^exponent contains bits in the range 2^0..2^31, namely
637 // the least significant exponent-52 bits
2001 const Register exponent = rdx; local
    [all...]
  /external/quake/quake/src/WinQuake/
gl_rmain.cpp 1263 GLint exponent[16];
1264 glQueryMatrixxOES( mantissa, exponent );
1266 r_world_matrix[i] = scalbnf(mantissa[i], exponent[i]-16);
    [all...]
  /external/valgrind/main/include/vki/
vki-arm-linux.h 539 unsigned int exponent:14; member in struct:vki_user_fp::vki_fp_reg
  /frameworks/base/opengl/java/android/opengl/
GLErrorWrapper.java 947 int[] exponent, int exponentOffset) {
950 exponent, exponentOffset);
955 public int glQueryMatrixxOES(IntBuffer mantissa, IntBuffer exponent) {
957 int valid = mgl10Ext.glQueryMatrixxOES(mantissa, exponent);
    [all...]
GLLogWrapper.java     [all...]
  /external/v8/src/mips/
code-stubs-mips.cc 420 // registers. The format is 1 sign bit, 11 exponent bits (biased 1023) and
460 Register exponent = result1_; local
463 Register exponent = result2_;
470 // in the exponent word of the double has the same position and polarity as
473 __ And(exponent, source_, Operand(HeapNumber::kSignMask));
476 __ Movn(source_, at, exponent);
483 // For 1 or -1 we need to or in the 0 exponent (biased to 1023).
487 __ Or(at, exponent, Operand(exponent_word_for_1));
488 __ Movn(exponent, at, source_); // Write exp when source not 0.
497 // Compute exponent and or it into the exponent register
3587 const Register exponent = a2; local
    [all...]
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 1150 // C function GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
1155 int[] exponent,
1159 // C function GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
1163 java.nio.IntBuffer exponent
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/GLES/
glext.h 495 GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
497 typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed mantissa[16], GLint exponent[16]);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/GLES/
glext.h 495 GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
497 typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed mantissa[16], GLint exponent[16]);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/GLES/
glext.h 495 GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
497 typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed mantissa[16], GLint exponent[16]);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/GLES/
glext.h 495 GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
497 typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed mantissa[16], GLint exponent[16]);
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/GLES/
glext.h 495 GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
497 typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed mantissa[16], GLint exponent[16]);
  /prebuilts/ndk/5/platforms/android-4/arch-arm/usr/include/GLES/
glext.h 495 GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
497 typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed mantissa[16], GLint exponent[16]);
  /prebuilts/ndk/6/platforms/android-4/arch-arm/usr/include/GLES/
glext.h 495 GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
497 typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed mantissa[16], GLint exponent[16]);
  /prebuilts/ndk/6/platforms/android-4/arch-x86/usr/include/GLES/
glext.h 495 GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
497 typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed mantissa[16], GLint exponent[16]);
  /external/v8/src/arm/
code-stubs-arm.cc 423 // registers. The format is 1 sign bit, 11 exponent bits (biased 1023) and
462 Register exponent = result1_; local
469 // in the exponent word of the double has the same position and polarity as
472 __ and_(exponent, source_, Operand(HeapNumber::kSignMask), SetCC);
482 // For 1 or -1 we need to or in the 0 exponent (biased to 1023).
485 __ orr(exponent, exponent, Operand(exponent_word_for_1), LeaveCC, eq);
494 // Compute exponent and or it into the exponent register.
501 __ orr(exponent,
3450 const Register exponent = r2; local
    [all...]
  /external/skia/src/effects/
SkLightingImageFilter.cpp 1431 const char* exponent; local
    [all...]
  /external/v8/src/ia32/
code-stubs-ia32.cc 678 // Get exponent word.
680 // Get exponent alone in scratch2.
685 // Check whether the exponent is too big for a 64 bit signed integer.
694 // Do conversion, which cannot fail because we checked the exponent.
702 // Check whether the exponent matches a 32 bit signed int that cannot be
704 // exponent is 30 (biased). This is the exponent that we are fastest at and
705 // also the highest exponent we can handle here.
709 // If we have a match of the int32-but-not-Smi exponent then skip some
712 // If the exponent is higher than that then go to slow case. This catche
2944 const Register exponent = eax; local
    [all...]
  /system/core/include/private/pixelflinger/
ggl_fixed.h 92 int32_t gglRecipQNormalized(int32_t x, int* exponent);
  /development/ndk/platforms/android-4/include/GLES/
glext.h     [all...]
  /external/eigen/Eigen/src/Core/
Functors.h 807 inline scalar_pow_op(const Scalar& exponent) : m_exponent(exponent) {}
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/GLES/
glext.h     [all...]

Completed in 2432 milliseconds

1 2 3 4 5 6 78 91011