HomeSort by relevance Sort by last modified time
    Searched full:big8 (Results 1 - 7 of 7) sorted by null

  /external/clang/test/Sema/
aarch64-neon-ranges.c 81 void test_ld2st2(int8x8x2_t small8, int8x16x2_t big8,
91 vld2q_lane_s8(addr, big8, 15);
101 vld2q_lane_s8(addr, big8, 16); // expected-error {{argument should be a value from 0 to 15}}
111 vst2q_lane_s8(addr, big8, 15);
121 vst2q_lane_s8(addr, big8, 16); // expected-error {{argument should be a value from 0 to 15}}
127 void test_ld3st3(int8x8x3_t small8, int8x16x3_t big8,
137 vld3q_lane_s8(addr, big8, 15);
147 vld3q_lane_s8(addr, big8, 16); // expected-error {{argument should be a value from 0 to 15}}
157 vst3q_lane_s8(addr, big8, 15);
167 vst3q_lane_s8(addr, big8, 16); // expected-error {{argument should be a value from 0 to 15}
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
ml_math_func.h 81 unsigned char *inv_int32_to_big8(long x, unsigned char *big8);
82 long inv_big8_to_int32(const unsigned char *big8);
83 short inv_big8_to_int16(const unsigned char *big8);
85 unsigned char *inv_int16_to_big8(short x, unsigned char *big8);
ml_math_func.c 398 unsigned char *inv_int32_to_big8(long x, unsigned char *big8)
400 big8[0] = (unsigned char)((x >> 24) & 0xff);
401 big8[1] = (unsigned char)((x >> 16) & 0xff);
402 big8[2] = (unsigned char)((x >> 8) & 0xff);
403 big8[3] = (unsigned char)(x & 0xff);
404 return big8;
408 long inv_big8_to_int32(const unsigned char *big8)
411 x = ((long)big8[0] << 24) | ((long)big8[1] << 16) | ((long)big8[2] << 8
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
ml_math_func.h 81 unsigned char *inv_int32_to_big8(long x, unsigned char *big8);
82 long inv_big8_to_int32(const unsigned char *big8);
83 short inv_big8_to_int16(const unsigned char *big8);
85 unsigned char *inv_int16_to_big8(short x, unsigned char *big8);
ml_math_func.c 398 unsigned char *inv_int32_to_big8(long x, unsigned char *big8)
400 big8[0] = (unsigned char)((x >> 24) & 0xff);
401 big8[1] = (unsigned char)((x >> 16) & 0xff);
402 big8[2] = (unsigned char)((x >> 8) & 0xff);
403 big8[3] = (unsigned char)(x & 0xff);
404 return big8;
408 long inv_big8_to_int32(const unsigned char *big8)
411 x = ((long)big8[0] << 24) | ((long)big8[1] << 16) | ((long)big8[2] << 8
    [all...]
  /external/crcalc/src/com/hp/creals/
UnaryCRFunction.java 652 if (deriv_difference.compareTo(big8) < 0) {
CR.java 202 static final BigInteger big8 = BigInteger.valueOf(8); field in class:CR
    [all...]

Completed in 951 milliseconds