HomeSort by relevance Sort by last modified time
    Searched refs:divisor (Results 126 - 150 of 166) sorted by null

1 2 3 4 56 7

  /external/llvm/lib/Support/
APInt.cpp     [all...]
  /frameworks/base/core/java/android/widget/
CalendarView.java 1716 int divisor = 2 * nDays; local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactPhotoManager.java 409 private static final int safeDiv(int dividend, int divisor) {
410 return (divisor == 0) ? 0 : (dividend / divisor);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/
glxext.h 508 typedef int ( * PFNGLXWAITVIDEOSYNCSGIPROC) (int divisor, int remainder, unsigned int *count);
698 typedef int64_t ( * PFNGLXSWAPBUFFERSMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder);
699 typedef Bool ( * PFNGLXWAITFORMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/GL/
glxext.h 508 typedef int ( * PFNGLXWAITVIDEOSYNCSGIPROC) (int divisor, int remainder, unsigned int *count);
698 typedef int64_t ( * PFNGLXSWAPBUFFERSMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder);
699 typedef Bool ( * PFNGLXWAITFORMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/GL/
glxext.h 508 typedef int ( * PFNGLXWAITVIDEOSYNCSGIPROC) (int divisor, int remainder, unsigned int *count);
698 typedef int64_t ( * PFNGLXSWAPBUFFERSMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder);
699 typedef Bool ( * PFNGLXWAITFORMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
  /external/webrtc/src/system_wrappers/source/spreadsortlib/
spreadsort.hpp 43 unsigned divisor = rough_log_2_size(count); local
44 //Making sure the divisor is positive
45 if(divisor > LOG_MEAN_BIN_SIZE)
46 divisor -= LOG_MEAN_BIN_SIZE;
48 divisor = 1;
49 unsigned relative_width = (LOG_CONST * log_range)/((divisor > MAX_SPLITS) ? MAX_SPLITS : divisor);
86 //Gets a non-negative right bit shift to operate as a logarithmic divisor
    [all...]
  /external/v8/src/arm/
lithium-codegen-arm.cc 905 int32_t divisor = local
908 if (divisor < 0) divisor = -divisor;
914 __ and_(result, result, Operand(divisor - 1), SetCC);
921 __ and_(result, dividend, Operand(divisor - 1));
934 DwVfpRegister divisor = ToDoubleRegister(instr->TempAt(2)); local
937 ASSERT(!dividend.is(divisor));
939 ASSERT(!divisor.is(quotient));
958 __ vmov(divisor.low(), right)
    [all...]
lithium-arm.cc 1313 LOperand* divisor = UseFixed(instr->right(), r1); local
1334 LOperand* divisor = UseRegister(instr->right()); local
    [all...]
  /external/v8/src/
heap.h 1372 const int divisor = FLAG_stress_compaction ? 10 : 3; local
1382 const int divisor = FLAG_stress_compaction ? 8 : 2; local
    [all...]
hydrogen-instructions.cc 2135 int32_t divisor = c_right->Integer32Value(); local
    [all...]
  /external/mdnsresponder/mDNSCore/
DNSCommon.c 942 mDNSu32 divisor = 1, chars = 2; \/\/ Shortest possible RFC1034 name suffix is 2 characters ("-2") local
    [all...]
  /external/oprofile/libpp/
format_output.cpp 66 string get_percent(count_type dividend, count_type divisor)
68 double ratio = op_ratio(dividend, divisor);
  /external/v8/src/mips/
lithium-mips.cc 1314 LOperand* divisor = UseFixed(instr->right(), a1); local
1335 LOperand* divisor = UseRegister(instr->right()); local
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 1302 LOperand* divisor = UseRegister(instr->right()); local
1329 LOperand* divisor = UseRegister(instr->right()); local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
c-common.h 920 extern void warn_for_div_by_zero (location_t, tree divisor);
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 2064 llvm::Value *divisor = 0; local
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]
  /external/opencv/cxcore/src/
cxarithm.cpp     [all...]
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c 3101 IRExpr* divisor = mk64lo32Sto64( mkexpr(rB) ); local
3132 IRExpr* divisor = mk64lo32Uto64( mkexpr(rB) ); local
3415 IRExpr * dividend, * divisor; local
3450 IRExpr * dividend, * divisor; local
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 1347 LOperand* divisor = UseRegister(instr->right()); local
1374 LOperand* divisor = UseRegister(instr->right()); local
    [all...]
lithium-codegen-ia32.cc 812 int32_t divisor = local
815 if (divisor < 0) divisor = -divisor;
821 __ and_(dividend, divisor - 1);
830 __ and_(dividend, divisor - 1);
855 // The sign of the divisor doesn't matter.
860 // divisor, the dividend is the result.
864 // Check if the divisor is a PowerOfTwo integer.
878 // Reduce the dividend by the divisor
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/c-family/
c-common.h     [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/c-family/
c-common.h     [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/c-family/
c-common.h     [all...]

Completed in 5195 milliseconds

1 2 3 4 56 7