HomeSort by relevance Sort by last modified time
    Searched refs:U32 (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /external/libhevc/encoder/
hme_datatype.h 45 typedef UWORD32 U32;
hme_common_utils.c 76 U32 hme_compute_2d_sum_u08(U08 *pu1_inp, S32 i4_wd, S32 i4_ht, S32 i4_stride)
79 U32 u4_sum = 0;
84 u4_sum += (U32)pu1_inp[j];
91 U32 hme_compute_2d_sum_u16(U16 *pu2_inp, S32 i4_wd, S32 i4_ht, S32 i4_stride)
94 U32 u4_sum = 0;
99 u4_sum += (U32)pu2_inp[j];
106 U32 hme_compute_2d_sum_u32(U32 *pu4_inp, S32 i4_wd, S32 i4_ht, S32 i4_stride)
109 U32 u4_sum = 0;
114 u4_sum += (U32)pu4_inp[j]
    [all...]
hme_common_utils.h 72 * @fn S32 hme_get_range(U32 u4_num);
82 static INLINE S32 hme_get_range(U32 u4_num)
115 U32 hme_compute_2d_sum_unsigned(
hme_fullpel.h 56 U32 *pu4_unique_node_map,
68 U32 *pu4_unique_node_map,
hme_utils.h 766 U32 u4_num_results_updated,
807 U32 *pu4_variance,
824 U32 *pu4_SigmaX,
825 U32 *pu4_SigmaXSquared,
848 U08 *pu1_data, S32 i4_data_stride, U32 *pu4_sigmaX, U32 *pu4_sigmaXSquared);
851 U08 *pu1_data, S32 i4_data_stride, U32 *pu4_sigmaX, U32 *pu4_sigmaXSquared, U08 diff_cu_size);
854 U08 *pu1_data, S32 i4_data_stride, U32 *pu4_sigmaX, U32 *pu4_sigmaXSquared)
    [all...]
  /external/lz4/programs/
datagen.c 30 #include "util.h" /* U32 */
61 static unsigned int RDG_rand(U32* src)
63 U32 rand32 = *src;
77 U32 u = 0;
80 U32 const weight = (U32)((double)(LTSIZE - u) * ld) + 1;
81 U32 const end = MIN(u+weight, LTSIZE);
92 static BYTE RDG_genChar(U32* seed, const litDistribTable lt)
94 U32 id = RDG_rand(seed) & LTMASK;
105 const U32 matchProba32 = (U32)(32768 * matchProba)
    [all...]
bench.c 84 static U32 g_compressibilityDefault = 50;
92 static U32 g_displayLevel = 2; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */
122 static U32 g_nbSeconds = NBSECONDS;
165 const size_t* fileSizes, U32 nbFiles)
168 U32 const maxNbBlocks = (U32) ((srcSize + (blockSize-1)) / blockSize) + nbFiles;
173 U32 nbBlocks;
201 U32 fileNb;
204 U32 const nbBlocksforThisFile = (U32)((remaining + (blockSize-1)) / blockSize)
    [all...]
  /external/libxaac/decoder/armv7/
ixheaacd_pre_twiddle_compute.s 129 VSHR.U32 Q15, Q15, #16
130 VSHR.U32 Q14, Q14, #16
131 VSHR.U32 Q13, Q13, #16
132 VSHR.U32 Q12, Q12, #16
148 VSHR.U32 Q11, Q11, #16
149 VSHR.U32 Q10, Q10, #16
150 VSHR.U32 Q9, Q9, #16
151 VSHR.U32 Q8, Q8, #16
198 VSHR.U32 Q15, Q15, #16
199 VSHR.U32 Q14, Q14, #1
    [all...]
ixheaacd_post_twiddle.s 117 VSHR.U32 Q15, Q15, #16
118 VSHR.U32 Q14, Q14, #16
119 VSHR.U32 Q13, Q13, #16
120 VSHR.U32 Q12, Q12, #16
139 VSHR.U32 Q11, Q11, #16
142 VSHR.U32 Q10, Q10, #16
145 VSHR.U32 Q9, Q9, #16
148 VSHR.U32 Q8, Q8, #16
173 VSHR.U32 Q0, Q0, #16
176 VSHR.U32 Q1, Q1, #1
    [all...]
ixheaacd_post_twiddle_overlap.s 212 VSHR.U32 Q15, Q15, #16
215 VSHR.U32 Q14, Q14, #16
224 VSHR.U32 Q13, Q13, #16
227 VSHR.U32 Q12, Q12, #16
253 VSHR.U32 Q11, Q11, #16
256 VSHR.U32 Q1, Q1, #16
257 VSHR.U32 Q0, Q0, #16
310 VSHR.U32 Q4, Q4, #16
311 VSHR.U32 Q13, Q13, #16
316 VSHR.U32 Q2, Q2, #1
    [all...]
ixheaacd_overlap_add1.s 72 VSHR.U32 Q15, Q15, #16
93 VSHR.U32 Q12, Q12, #16
129 VSHR.U32 Q15, Q15, #16
131 VSHR.U32 Q12, Q12, #16
179 VSHR.U32 Q15, Q15, #16
183 VSHR.U32 Q12, Q12, #16
239 VSHR.U32 Q15, Q15, #16
241 VSHR.U32 Q12, Q12, #16
  /external/lz4/lib/
lz4.c 179 typedef uint32_t U32;
186 typedef unsigned int U32;
203 const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
212 static U32 LZ4_read32(const void* memPtr) { return *(const U32*) memPtr; }
216 static void LZ4_write32(void* memPtr, U32 value) { *(U32*)memPtr = value; }
222 typedef union { U16 u16; U32 u32; reg_t uArch; } __attribute__((packed)) unalign; member in union:__anon32388
225 static U32 LZ4_read32(const void* ptr) { return ((const unalign*)ptr)->u32;
    [all...]
xxhash.c 143 typedef uint32_t U32;
148 typedef unsigned int U32;
156 static U32 XXH_read32(const void* memPtr) { return *(const U32*) memPtr; }
162 typedef union { U32 u32; } __attribute__((packed)) unalign; member in union:__anon32417
163 static U32 XXH_read32(const void* ptr) { return ((const unalign*)ptr)->u32; }
170 static U32 XXH_read32(const void* memPtr)
172 U32 val
550 typedef union { U32 u32; U64 u64; } __attribute__((packed)) unalign64; member in union:__anon32420
    [all...]
lz4hc.c 80 static U32 LZ4HC_hashPtr(const void* ptr) { return HASH_FUNCTION(LZ4_read32(ptr)); }
103 hc4->nextToUpdate = (U32) startingOffset;
107 hc4->dictLimit = (U32) startingOffset;
108 hc4->lowLimit = (U32) startingOffset;
116 U32* const hashTable = hc4->hashTable;
118 U32 const target = (U32)(ip - base);
119 U32 idx = hc4->nextToUpdate;
122 U32 const h = LZ4HC_hashPtr(base+idx);
153 LZ4HC_countPattern(const BYTE* ip, const BYTE* const iEnd, U32 const pattern32
    [all...]
  /external/lz4/tests/
frametest.c 38 #include "util.h" /* U32 */
55 static void FUZ_writeLE32 (void* dstVoidPtr, U32 value32)
74 static const U32 nbTestsDefault = 256 KB;
76 static const U32 prime1 = 2654435761U;
77 static const U32 prime2 = 2246822519U;
97 static U32 no_prompt = 0;
98 static U32 displayLevel = 2;
99 static U32 use_pause = 0;
117 U32 rand32 = *src;
128 static void FUZ_fillCompressibleNoiseBuffer(void* buffer, size_t bufferSize, double proba, U32* seed
    [all...]
fuzzer.c 45 #include "util.h" /* U32 */
116 static U32 FUZ_rotl32(U32 u32, U32 nbBits)
118 return ((u32 << nbBits) | (u32 >> (32 - nbBits)));
121 static U32 FUZ_rand(U32* src)
123 U32 rand32 = *src
    [all...]
datagencli.c 30 #include "util.h" /* U32 */
83 U32 seed = SEED_DEFAULT;
166 if (proba!=COMPRESSIBILITY_DEFAULT) DISPLAYLEVEL(3, "Compressibility : %i%%\n", (U32)(proba*100));
  /external/vulkan-validation-layers/layers/
xxhash.c 139 typedef uint32_t U32;
143 typedef unsigned int U32;
150 static U32 XXH_read32(const void* memPtr) { return *(const U32*) memPtr; }
156 typedef union { U32 u32; } __attribute__((packed)) unalign; member in union:__anon49367
157 static U32 XXH_read32(const void* ptr) { return ((const unalign*)ptr)->u32; }
164 static U32 XXH_read32(const void* memPtr)
166 U32 val
544 typedef union { U32 u32; U64 u64; } __attribute__((packed)) unalign64; member in union:__anon49370
    [all...]
  /external/skia/third_party/skcms/src/
Transform_inl.h 16 // U32: a vector of N uint32_t
147 U32 wide = cast<U32>(half);
149 U32 s = wide & 0x8000,
174 U32 sem = bit_pun<U32>(f),
179 return cast<U16>(if_then_else(em < 0x38800000, (U32)F0
257 U32 bits = bit_pun<U32>(x),
266 return bit_pun<F>(sign | bit_pun<U32>(v))
    [all...]
  /external/skqp/third_party/skcms/src/
Transform_inl.h 16 // U32: a vector of N uint32_t
147 U32 wide = cast<U32>(half);
149 U32 s = wide & 0x8000,
174 U32 sem = bit_pun<U32>(f),
179 return cast<U16>(if_then_else(em < 0x38800000, (U32)F0
257 U32 bits = bit_pun<U32>(x),
266 return bit_pun<F>(sign | bit_pun<U32>(v))
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/client/lib/
prng.cc 39 key[0] = BitcastConvertType(key[0], U32);
40 key[1] = BitcastConvertType(key[1], U32);
110 inputs[0] = Iota(builder, U32, size);
132 auto fst = ConvertElementType(u64, U32);
133 auto snd = ConvertElementType(ShiftRightLogical(u64, const32), U32);
197 return StatelessRngUniformInt(bits, minval, maxval, type, U32);
  /external/tensorflow/tensorflow/compiler/xla/
primitive_util.cc 53 return type == U8 || type == U16 || type == U32 || type == U64;
75 case U32:
107 return xla::U32;
  /external/tensorflow/tensorflow/compiler/xla/client/
xla_builder_test.cc 216 auto x = Parameter(&b, 0, ShapeUtil::MakeShape(U32, {2, 4, 6}), "x");
217 auto y = Parameter(&b, 1, ShapeUtil::MakeShape(U32, {2, 4}), "y");
489 Parameter(&b, 1, ShapeUtil::MakeShape(U32, {}), "p1");
506 {ShapeUtil::MakeShape(F32, {5}, {true}), ShapeUtil::MakeShape(U32, {})});
525 ShapeUtil::MakeShape(F32, {5}, {true}), ShapeUtil::MakeShape(U32, {})});
550 ShapeUtil::MakeShape(F32, {5}, {true}), ShapeUtil::MakeShape(U32, {})});
576 ShapeUtil::MakeShape(U32, {})});
598 ShapeUtil::MakeShape(F32, {1, 15}), ShapeUtil::MakeShape(U32, {})});
619 ShapeUtil::MakeShape(F32, {10}), ShapeUtil::MakeShape(U32, {})});
642 ShapeUtil::MakeShape(U32, {})});
    [all...]
  /external/vixl/tools/test_generator/
data_types.py 284 how they should be represented and printed, see the `U32` class for an
345 class U32(Scalar):
382 class Register(U32):
408 class NZCV(U32):
449 class Q(U32):
489 class GE(U32):
521 class FPSCR(U32):
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
GetElementAt.java 76 gIn = Allocation.createSized(mRS, Element.U32(mRS), INPUTSIZE);
93 Type.Builder builder = new Type.Builder(mRS, Element.U32(mRS));

Completed in 1348 milliseconds

1 2 3 4 5 6 7