HomeSort by relevance Sort by last modified time
    Searched full:high (Results 101 - 125 of 8253) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/volley/src/test/java/com/android/volley/
RequestTest.java 35 TestRequest high = new TestRequest(Priority.HIGH); local
36 high.setSequence(sequence++);
41 assertTrue(low.compareTo(high) > 0);
42 assertTrue(high.compareTo(low) < 0);
45 assertTrue(immediate.compareTo(high) < 0);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_common.h 55 static INLINE int clamp(int value, int low, int high) {
56 return value < low ? low : (value > high ? high : value);
59 static INLINE double fclamp(double value, double low, double high) {
60 return value < low ? low : (value > high ? high : value);
  /external/autotest/client/tests/pktgen/
control 8 pktgen is a high-performance testing tool included in the Linux kernel. Being
13 generate very high packet rates and with few systems saturate network devices as
  /external/clang/test/Preprocessor/
c99-6_10_3_4_p6.c 18 glue(HIGH, LOW);
19 xglue(HIGH, LOW)
  /external/e2fsprogs/e2fsck/
dx_dirinfo.c 83 int low, high, mid; local
86 high = ctx->dx_dir_info_count-1;
91 if (ino == ctx->dx_dir_info[high].ino)
92 return &ctx->dx_dir_info[high];
94 while (low < high) {
95 mid = (low+high)/2;
96 if (mid == low || mid == high)
101 high = mid;
  /external/iptables/include/linux/
kernel.h 23 unsigned long totalhigh; /* Total high memory size */
24 unsigned long freehigh; /* Available high memory size */
  /external/kernel-headers/original/uapi/linux/
sysinfo.h 18 __kernel_ulong_t totalhigh; /* Total high memory size */
19 __kernel_ulong_t freehigh; /* Available high memory size */
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/
btAngularLimit.java 66 public void set(float low, float high, float _softness, float _biasFactor, float _relaxationFactor) {
67 DynamicsJNI.btAngularLimit_set__SWIG_0(swigCPtr, this, low, high, _softness, _biasFactor, _relaxationFactor);
70 public void set(float low, float high, float _softness, float _biasFactor) {
71 DynamicsJNI.btAngularLimit_set__SWIG_1(swigCPtr, this, low, high, _softness, _biasFactor);
74 public void set(float low, float high, float _softness) {
75 DynamicsJNI.btAngularLimit_set__SWIG_2(swigCPtr, this, low, high, _softness);
78 public void set(float low, float high) {
79 DynamicsJNI.btAngularLimit_set__SWIG_3(swigCPtr, this, low, high);
  /external/libgdx/tests/gdx-tests-android/assets/data/g3d/shaders/
normal.glsl 30 #define HIGH highp
35 #define HIGH
  /external/llvm/test/CodeGen/SystemZ/
tls-02.ll 11 ; CHECK-MAIN: ear [[HIGH:%r[0-5]]], %a0
12 ; CHECK-MAIN: sllg %r2, [[HIGH]], 32
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
kernel.h 23 unsigned long totalhigh; /* Total high memory size */
24 unsigned long freehigh; /* Available high memory size */
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m32r/
pic.s 19 seth r12,#high(_GLOBAL_OFFSET_TABLE_)
35 seth r12,#high(sym2)
  /art/runtime/interpreter/mterp/arm/
op_const.S 4 FETCH r1, 2 @ r1<- BBBB (high)
  /art/runtime/interpreter/mterp/arm64/
op_const_string_jumbo.S 4 FETCH w2, 2 // w2<- BBBB (high
  /art/runtime/interpreter/mterp/mips/
op_const_string_jumbo.S 4 FETCH(a2, 2) # a2 <- BBBB (high)
op_const_wide_32.S 4 FETCH_S(a2, 2) # a2 <- ssssBBBB (high)
  /art/runtime/interpreter/mterp/mips64/
op_const_string_jumbo.S 5 lh a4, 4(rPC) # a4 <- BBBB (high)
  /dalvik/dx/tests/084-dex-high-register-moves/
info.txt 2 high registers are moved to and from low registers with
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/
bower.json 8 "description": "Javascript Matrix and Vector library for High Performance WebGL apps",
  /external/clang/test/CodeGen/
2005-09-24-BitFieldCrash.c 9 long long high; member in struct:tree_int_cst::tree_int_cst_lowhi
  /external/compiler-rt/lib/builtins/
fixunsdfdi.c 25 su_int high = a / 4294967296.f; /* a / 0x1p32f; */
26 su_int low = a - (double)high * 4294967296.f; /* high * 0x1p32f; */
27 return ((du_int)high << 32) | low;
fixunssfdi.c 26 su_int high = da / 4294967296.f; /* da / 0x1p32f; */ local
27 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */
28 return ((du_int)high << 32) | low;
  /external/compiler-rt/lib/builtins/i386/
ashldi3.S 42 movl 8(%esp), %edx // Load high
47 shldl %cl, %eax, %edx // left shift high by count
51 1: movl %eax, %edx // Move low to high
53 shll %cl, %edx // shift high by count - 32
lshrdi3.S 42 movl 8(%esp), %edx // Load high
49 shrl %cl, %edx // right shift high by count
52 1: movl %edx, %eax // Move high to low
53 xorl %edx, %edx // clear high
  /external/elfutils/tests/
dwfl-bug-addr-overflow.c 47 Dwfl_Module *high = dwfl_report_module (dwfl, "high", local
50 assert (high);
64 assert (mod == high);

Completed in 559 milliseconds

1 2 3 45 6 7 8 91011>>