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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m32r/
uppercase.s 7 high: label
8 seth r0,#HIGH(high)
high-1.s 1 ; Test high/shigh handling.
4 seth r4,#high(foo+0x10000)
7 seth r4,#high(0x12348765)
  /art/test/568-checker-onebit/
info.txt 1 Unit test for 32-bit and 64-bit high/low-bit operations.
  /external/clang/test/CodeGen/
aarch64-neon-vcombine.c 8 int8x16_t test_vcombine_s8(int8x8_t low, int8x8_t high) {
10 return vcombine_s8(low, high);
14 int16x8_t test_vcombine_s16(int16x4_t low, int16x4_t high) {
16 return vcombine_s16(low, high);
20 int32x4_t test_vcombine_s32(int32x2_t low, int32x2_t high) {
22 return vcombine_s32(low, high);
26 int64x2_t test_vcombine_s64(int64x1_t low, int64x1_t high) {
28 return vcombine_s64(low, high);
32 uint8x16_t test_vcombine_u8(uint8x8_t low, uint8x8_t high) {
34 return vcombine_u8(low, high);
    [all...]
2002-09-18-UnionProblem.c 5 char high, low; member in struct:DWstruct
18 rr.s.high = n1;
22 rr.s.high = bm;
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/shaders/
depth.fragment.glsl 4 #define HIGH highp
9 #define HIGH
20 varying HIGH float v_depth;
30 HIGH float depth = v_depth;
31 const HIGH vec4 bias = vec4(1.0 / 255.0, 1.0 / 255.0, 1.0 / 255.0, 0.0);
32 HIGH vec4 color = vec4(depth, fract(depth * 255.0), fract(depth * 65025.0), fract(depth * 160581375.0));
  /external/chromium-trace/catapult/telemetry/telemetry/value/
histogram_util_unittest.py 13 {"low": 1, "high": 2, "count": 1},
14 {"low": 2, "high": 3, "count": 2}]}"""
17 {"low": 1, "high": 2, "count": 1},
18 {"low": 2, "high": 3, "count": 3},
19 {"low": 3, "high": 4, "count": 10}]}"""
34 {"low": 1, "high": 2, "count": 1},
35 {"low": 2, "high": 3, "count": 2}]}""")
38 {"low": 2, "high": 3, "count": 10},
39 {"low": 3, "high": 4, "count": 10}]}""")
42 {"low": 1, "high": 2, "count": 4}
    [all...]
  /sdk/apps/DeviceConfig/res/values-hdpi/
strings.xml 3 <string name="density">HIGH</string>
  /external/chromium-trace/catapult/experimental/heatmap/
math.js 1 function constrain(value, low, high) {
4 if (value > high)
5 return high;
  /frameworks/rs/driver/runtime/arch/
clamp.c 25 extern T __attribute__((overloadable)) clamp(T amount, T low, T high) { \
26 return amount < low ? low : (amount > high ? high : amount); \
46 extern T##2 __attribute__((overloadable)) clamp(T##2 amount, T##2 low, T##2 high) { \
48 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x); \
49 r.y = amount.y < low.y ? low.y : (amount.y > high.y ? high.y : amount.y); \
53 extern T##3 __attribute__((overloadable)) clamp(T##3 amount, T##3 low, T##3 high) { \
55 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x);
    [all...]
  /external/valgrind/none/tests/s390x/
cdsg.c 5 uint64_t high; member in struct:__anon27147
28 printf("before op1 = (%#lx, %#lx)\n", _op1.high, _op1.low);
29 printf("before op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
30 printf("before op3 = (%#lx, %#lx)\n", _op3.high, _op3.low);
44 printf("after op1 = (%#lx, %#lx)\n", _op1.high, _op1.low);
45 printf("after op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
46 printf("after op3 = (%#lx, %#lx)\n", _op3.high, _op3.low);
54 if (_op3.low != op3_before.low || _op3.high != op3_before.high) {
62 if (_op1.low != op1_before.low || _op1.high != op1_before.high)
    [all...]
cds.c 5 uint64_t high; member in struct:__anon27146
23 printf("before op1 = (%#lx, %#lx)\n", op1.high, op1.low);
25 printf("before op3 = (%#lx, %#lx)\n", op3.high, op3.low);
39 printf("after op1 = (%#lx, %#lx)\n", op1.high, op1.low);
41 printf("after op3 = (%#lx, %#lx)\n", op3.high, op3.low);
50 if (op3.low != op3_before.low || op3.high != op3_before.high) {
58 if (op1.low != op1_before.low || op1.high != op1_before.high) {
66 // higher 32 bits of op2 are the lower 32 bits of op3.high
    [all...]
  /frameworks/support/design/base/android/support/design/widget/
MathUtils.java 21 static int constrain(int amount, int low, int high) {
22 return amount < low ? low : (amount > high ? high : amount);
25 static float constrain(float amount, float low, float high) {
26 return amount < low ? low : (amount > high ? high : amount);
  /art/runtime/interpreter/mterp/arm/
op_long_to_int.S 1 /* we ignore the high word, making this equivalent to a 32-bit reg move */
  /art/runtime/interpreter/mterp/mips/
op_long_to_int.S 1 /* we ignore the high word, making this equivalent to a 32-bit reg move */
  /art/runtime/interpreter/mterp/mips64/
op_long_to_int.S 1 /* we ignore the high word, making this equivalent to a 32-bit reg move */
  /art/runtime/interpreter/mterp/x86/
op_long_to_int.S 1 /* we ignore the high word, making this equivalent to a 32-bit reg move */
  /art/runtime/interpreter/mterp/x86_64/
op_long_to_int.S 1 /* we ignore the high word, making this equivalent to a 32-bit reg move */
  /external/valgrind/memcheck/tests/
leak-cases-summary.vgtest 2 vgopts: -q --leak-check=summary --leak-resolution=high
leak-cycle.vgtest 2 vgopts: -q --leak-check=yes --leak-resolution=high
leak-tree.vgtest 2 vgopts: -q --leak-check=full --leak-resolution=high
  /external/valgrind/perf/
many-loss-records.vgperf 2 vgopts: --memcheck:leak-check=yes --memcheck:leak-resolution=high
  /hardware/bsp/intel/peripheral/libupm/src/adis16448/
CMakeLists.txt 2 set (libdescription "libupm High-Precision IMU")
  /hardware/bsp/intel/peripheral/libupm/src/hp20x/
CMakeLists.txt 2 set (libdescription "upm grove barometer (high efficiency)")
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicInlines.h 85 static inline int4 clamp(int4 amount, int low, int high) {
87 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x);
88 r.y = amount.y < low ? low : (amount.y > high ? high : amount.y);
89 r.z = amount.z < low ? low : (amount.z > high ? high : amount.z);
90 r.w = amount.w < low ? low : (amount.w > high ? high : amount.w);
94 static inline float4 clamp(float4 amount, float low, float high) {
    [all...]

Completed in 1809 milliseconds

1 2 3 4 5 6 7 8 91011>>