Searched refs:U32 (Results 1 - 25 of 56) sorted by relevance

123

/external/syslinux/gpxe/src/drivers/net/phantom/
H A Dnxhal_nic_interface.h15 typedef U32 nx_reg_addr_t;
186 typedef U32 nx_rx_rule_type_t;
195 typedef U32 nx_rx_rule_cmd_t;
223 U32 id;
224 U32 active;
254 typedef U32 nx_host_ctx_state_t;
300 U32 ring_size; /* Ring entries */
301 U32 rsvd; /* Padding */
308 U32 capabilities[4]; /* Flag bit vector */
309 U32 host_int_crb_mod
[all...]
H A Dphantom.h44 typedef uint32_t U32; typedef
/external/lz4/programs/
H A Ddatagen.c30 #include "util.h" /* U32 */
60 static unsigned int RDG_rand(U32* src)
62 U32 rand32 = *src;
76 U32 u = 0;
79 U32 const weight = (U32)((double)(LTSIZE - u) * ld) + 1;
80 U32 const end = MIN(u+weight, LTSIZE);
88 static BYTE RDG_genChar(U32* seed, const litDistribTable lt)
90 U32 id = RDG_rand(seed) & LTMASK;
101 const U32 matchProba3
[all...]
H A Dbench.c79 static U32 g_compressibilityDefault = 50;
87 static U32 g_displayLevel = 2; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */
117 static U32 g_nbSeconds = NBSECONDS;
160 const size_t* fileSizes, U32 nbFiles)
163 U32 const maxNbBlocks = (U32) ((srcSize + (blockSize-1)) / blockSize) + nbFiles;
168 U32 nbBlocks;
198 U32 fileNb;
201 U32 const nbBlocksforThisFile = (U32)((remainin
[all...]
H A Dlz4cli.c430 DISPLAYLEVEL(2, "using blocks of size %u KB \n", (U32)(blockSize>>10));
435 DISPLAYLEVEL(2, "bench: using blocks of size %u KB \n", (U32)(B>>10));
437 DISPLAYLEVEL(2, "bench: using blocks of size %u bytes \n", (U32)(B));
513 if ((mode == om_compress) || (mode == om_bench)) DISPLAYLEVEL(4, "Blocks size : %i KB\n", (U32)(blockSize>>10));
H A Dutil.h58 typedef uint32_t U32; typedef
66 typedef unsigned int U32; typedef
251 UTIL_STATIC U32 UTIL_isDirectory(const char* infilename)
/external/lz4/tests/
H A Dframetest.c38 #include "util.h" /* U32 */
50 static void FUZ_writeLE32 (void* dstVoidPtr, U32 value32)
69 static const U32 nbTestsDefault = 256 KB;
72 static const U32 prime1 = 2654435761U;
73 static const U32 prime2 = 2246822519U;
93 static U32 no_prompt = 0;
94 static U32 displayLevel = 2;
95 static U32 use_pause = 0;
113 U32 rand32 = *src;
124 static void FUZ_fillCompressibleNoiseBuffer(void* buffer, size_t bufferSize, double proba, U32* see
[all...]
H A Dfuzzer.c40 #include "util.h" /* U32 */
104 static U32 FUZ_rotl32(U32 u32, U32 nbBits)
109 static U32 FUZ_rand(U32* src)
111 U32 rand32 = *src;
122 static void FUZ_fillCompressibleNoiseBuffer(void* buffer, size_t bufferSize, double proba, U32* seed)
126 U32 const P32 = (U32)(3276
[all...]
H A Ddatagencli.c30 #include "util.h" /* U32 */
83 U32 seed = SEED_DEFAULT;
166 if (proba!=COMPRESSIBILITY_DEFAULT) DISPLAYLEVEL(3, "Compressibility : %i%%\n", (U32)(proba*100));
H A Dfullbench.c37 #include "util.h" /* U32, UTIL_getFileSize */
79 U32 id;
339 U32 crcOriginal;
550 U32 crcDecoded;
/external/lz4/lib/
H A Dxxhash.c138 typedef uint32_t U32; typedef
143 typedef unsigned int U32; typedef
151 static U32 XXH_read32(const void* memPtr) { return *(const U32*) memPtr; }
157 typedef union { U32 u32; } __attribute__((packed)) unalign;
158 static U32 XXH_read32(const void* ptr) { return ((const unalign*)ptr)->u32; }
165 static U32 XXH_read32(const void* memPtr)
167 U32 val;
194 static U32 XXH_swap32 (U32
[all...]
H A Dlz4.c141 typedef uint32_t U32; typedef
148 typedef unsigned int U32; typedef
165 const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
174 static U32 LZ4_read32(const void* memPtr) { return *(const U32*) memPtr; }
178 static void LZ4_write32(void* memPtr, U32 value) { *(U32*)memPtr = value; }
184 typedef union { U16 u16; U32 u32; reg_t uArch; } __attribute__((packed)) unalign;
187 static U32 LZ4_read32(const void* ptr) { return ((const unalign*)ptr)->u32; }
191 static void LZ4_write32(void* memPtr, U32 valu
[all...]
H A Dlz4opt.h89 U32* const HashTable = ctx->hashTable;
91 const U32 dictLimit = ctx->dictLimit;
92 const U32 current = (U32)(ip - base);
93 const U32 lowLimit = (ctx->lowLimit + MAX_DISTANCE > current) ? ctx->lowLimit : current - (MAX_DISTANCE - 1);
99 U32 matchIndex;
101 U32* HashPos;
173 const U32 target = (U32)(ip - base);
174 U32 id
[all...]
H A Dlz4hc.c90 static U32 LZ4HC_hashPtr(const void* ptr) { return HASH_FUNCTION(LZ4_read32(ptr)); }
114 U32* const hashTable = hc4->hashTable;
116 U32 const target = (U32)(ip - base);
117 U32 idx = hc4->nextToUpdate;
120 U32 const h = LZ4HC_hashPtr(base+idx);
138 U32* const HashTable = hc4->hashTable;
141 const U32 dictLimit = hc4->dictLimit;
142 const U32 lowLimit = (hc4->lowLimit + 64 KB > (U32)(i
[all...]
H A Dlz4frame.c82 typedef uint32_t U32; typedef
88 typedef unsigned int U32; typedef
95 static U32 LZ4F_readLE32 (const void* src)
98 U32 value32 = srcPtr[0];
101 value32 += ((U32)srcPtr[3])<<24;
105 static void LZ4F_writeLE32 (void* dst, U32 value32)
171 U32 version;
172 U32 cStage;
181 U32 lz4CtxLevel; /* 0: unallocated; 1: LZ4_stream_t; 3: LZ4_streamHC_t */
236 U32 cons
[all...]
/external/skia/src/jumper/
H A DSkJumper_stages.cpp52 using U32 = uint32_t;
63 SI U32 round (F v, F scale) { return (uint32_t)lrintf(v*scale); }
64 SI U16 pack(U32 v) { return (U16)v; }
69 SI F gather(const float* p, U32 ix) { return p[ix]; }
79 using U32 = uint32_t __attribute__((ext_vector_type(4)));
91 SI U32 round (F v, F scale) { return vcvtnq_u32_f32(v*scale); }
92 SI U16 pack(U32 v) { return __builtin_convertvector(v, U16); }
95 SI F if_then_else(I32 c, F t, F e) { return vbslq_f32((U32)c,t,e); }
97 SI F gather(const float* p, U32 ix) { return {p[ix[0]], p[ix[1]], p[ix[2]], p[ix[3]]}; }
110 using U32
[all...]
/external/vixl/tools/test_generator/
H A Ddata_types.py284 how they should be represented and printed, see the `U32` class for an
345 class U32(Scalar): class in inherits:Scalar
363 class Register(U32):
379 class NZCV(U32):
420 class Q(U32):
460 class GE(U32):
/external/google-breakpad/src/client/linux/dump_writer_common/
H A Dthread_info.cc50 void U32(void* out, uint32_t v) { function in namespace:__anon6684
112 U32(out->extended_registers + 8, fpxregs.fip);
114 U32(out->extended_registers + 16, fpregs.foo);
116 U32(out->extended_registers + 24, fpxregs.mxcsr);
/external/valgrind/VEX/priv/
H A Dir_opt.c1101 case Ico_U32: return toBool( c1->Ico.U32 == c2->Ico.U32 );
1186 && e->Iex.Const.con->Ico.U32 == 0);
1224 case Ico_U32: return toBool( e->Iex.Const.con->Ico.U32 == 0);
1237 case Ico_U32: return toBool( e->Iex.Const.con->Ico.U32
1460 0xFFFF & e->Iex.Unop.arg->Iex.Const.con->Ico.U32)));
1464 0xFF & e->Iex.Unop.arg->Iex.Const.con->Ico.U32)));
1468 1 == (1 & e->Iex.Unop.arg->Iex.Const.con->Ico.U32)
1487 ~ (e->Iex.Unop.arg->Iex.Const.con->Ico.U32)));
1530 & e->Iex.Unop.arg->Iex.Const.con->Ico.U32));
[all...]
H A Dhost_tilegx_isel.c1068 l = (Long) (Int) con->Ico.U32;
1160 u = 0xFFFFFFFF & con->Ico.U32;
1543 (sz == 4 && cas->expdLo->Iex.Const.con->Ico.U32 == 0))
1550 (sz == 4 && cas->expdLo->Iex.Const.con->Ico.U32 == 2))
1557 (sz == 4 && cas->expdLo->Iex.Const.con->Ico.U32 == 3))
1564 (sz == 4 && cas->expdLo->Iex.Const.con->Ico.U32 == 4))
1571 (sz == 4 && cas->expdLo->Iex.Const.con->Ico.U32 == 5))
H A Dhost_x86_isel.c117 && e->Iex.Const.con->Ico.U32 == 0;
1577 UInt imm32 = e->Iex.Binop.arg2->Iex.Const.con->Ico.U32;
1607 return X86AMode_IR(e->Iex.Binop.arg2->Iex.Const.con->Ico.U32, r1);
1653 case Ico_U32: u = e->Iex.Const.con->Ico.U32; break;
1713 case Ico_U32: u = e->Iex.Const.con->Ico.U32; break;
2006 X86RMI_Imm(con->Iex.Const.con->Ico.U32),
4261 = ((Addr32)stmt->Ist.Exit.dst->Ico.U32) > env->max_ga;
4263 addInstr(env, X86Instr_XDirect(stmt->Ist.Exit.dst->Ico.U32,
4342 = ((Addr32)cdst->Ico.U32) > env->max_ga;
4344 addInstr(env, X86Instr_XDirect(cdst->Ico.U32,
[all...]
/external/vixl/src/aarch32/
H A Dinstructions-aarch32.cc470 case U32:
/external/llvm/unittests/ADT/
H A DStringRefTest.cpp469 uint32_t U32; local
487 bool U32Success = StringRef(Unsigned[i].Str).getAsInteger(0, U32);
490 EXPECT_EQ(U32, Unsigned[i].Expected);
/external/valgrind/coregrind/m_gdbserver/
H A Dm_gdbserver.c1229 : sb_in->next->Iex.Const.con->Ico.U32);
1264 st->Ist.Exit.dst->Ico.U32);
/external/deqp/framework/common/
H A DtcuTexture.cpp1042 #define U32(OFFS, COUNT) ((*((const deUint32*)pixelPtr) >> (OFFS)) & ((1<<(COUNT))-1)) macro
1043 #define S32(OFFS, COUNT) signExtend(U32(OFFS, COUNT), (COUNT))
1056 case TextureFormat::UNORM_INT_101010: return UVec4(U32(22, 10), U32(12, 10), U32( 2, 10), 1).cast<int>();
1058 case TextureFormat::UNSIGNED_INT_1010102_REV: return swizzleRB(UVec4(U32( 0, 10), U32(10, 10), U32(20, 10), U32(30, 2)), m_format.order, TextureFormat::RGBA).cast<int>();
1072 #undef U32 macro
[all...]

Completed in 8450 milliseconds

123