HomeSort by relevance Sort by last modified time
    Searched defs:UInt (Results 26 - 50 of 59) sorted by null

12 3

  /external/valgrind/main/memcheck/tests/amd64/
sse_memory.c 13 typedef unsigned int UInt;
34 static UInt seed = 80021;
bt_everything.c 7 typedef unsigned int UInt;
407 UInt n, op;
449 res = rol1(res) ^ (UInt)ch;
  /external/valgrind/main/memcheck/tests/
wrap6.c 12 typedef unsigned int UInt;
14 #define ROL(_x,n) (((_x) << n) | ((UInt)(_x)) >> ((8*sizeof(UInt)-n)))
18 register UInt* vec = (_vec); \
21 register UInt i, sum = 0; \
22 register UInt v1 = vec[1-1]; \
23 register UInt v2 = vec[2-1]; \
24 register UInt v3 = vec[3-1]; \
25 register UInt v4 = vec[4-1]; \
26 register UInt v5 = vec[5-1];
    [all...]
  /external/valgrind/main/none/tests/amd64/
aes.c 6 typedef unsigned int UInt;
18 UInt uInt[4];
crc32.c 5 typedef unsigned int UInt;
13 UInt do_s_crc32b ( UInt crcIn, UChar b )
15 UInt i, crc = (b & 0xFF) ^ crcIn;
21 UInt do_s_crc32w ( UInt crcIn, UShort w )
23 UInt i, crc = (w & 0xFFFF) ^ crcIn;
29 UInt do_s_crc32l ( UInt crcIn, UInt l
    [all...]
amd64locked.c 8 typedef unsigned int UInt;
21 static const UInt crc32Table[256] = {
98 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn )
100 UInt crc = crcIn;
117 static UInt crcFinalise ( UInt crc ) {
123 static UInt theCRC = 0xFFFFFFFF;
528 : "r" ((UInt)bitno));
562 : "r" ((UInt)bitno))
    [all...]
pcmpstr64.c 10 typedef unsigned int UInt;
22 UInt uInt[4];
41 UInt clz32 ( UInt x )
65 UInt ctz32 ( UInt x )
90 UInt(*h_fn)(V128*,V128*),
91 UInt(*s_fn)(V128*,V128*),
98 UInt h_res = h_fn(&argL, &argR)
    [all...]
pcmpstr64w.c 10 typedef unsigned int UInt;
24 UInt uInt[4];
25 UInt w32[4];
44 UInt clz32 ( UInt x )
68 UInt ctz32 ( UInt x )
93 UInt(*h_fn)(V128*,V128*),
94 UInt(*s_fn)(V128*,V128*)
    [all...]
sse4-64.c 45 typedef unsigned int UInt;
80 static UInt seed = 80021;
191 UInt get_mxcsr ( void )
201 if (0) printf("get %08x\n", (UInt)w64);
202 return (UInt)w64;
206 void set_mxcsr ( UInt w32 )
219 UInt get_sse_roundingmode ( void )
221 UInt w = get_mxcsr();
225 void set_sse_roundingmode ( UInt m )
227 UInt w
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 143 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {}
151 UIntMax UInt;
  /external/valgrind/main/VEX/useful/
show_fp_state.c 10 typedef unsigned int UInt;
70 UInt fp_get_tos ( void )
75 UInt fp_get_tag ( UInt regno )
81 UInt fp_get_statusword_flag ( UInt flagno )
87 UInt fp_get_controlword_flag ( UInt flagno )
100 (UInt)i == fp_get_tos() ? "**" : " ", i );
102 printf ( "%02x", (UInt)m_fpu_state.reg[j])
    [all...]
smchash.c 7 typedef unsigned int UInt;
12 static inline UInt ROL32 ( UInt x, UInt n ) {
33 UInt i;
34 UInt esum, csum;
58 UInt b;
90 UInt hash_const_zero ( GuestBytes* gb ) {
94 UInt hash_sum ( GuestBytes* gb ) {
95 UInt i, sum = 0
    [all...]
  /external/valgrind/main/coregrind/
fixup_macho_loadcmds.c 108 typedef unsigned int UInt;
427 UInt* w32s = (UInt*)( (UChar*)tcmd + sizeof(*tcmd) );
  /external/valgrind/main/none/tests/x86/
x86locked.c 8 typedef unsigned int UInt;
21 static const UInt crc32Table[256] = {
98 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn )
100 UInt crc = crcIn;
117 static UInt crcFinalise ( UInt crc ) {
123 static UInt theCRC = 0xFFFFFFFF;
561 UInt n, bitoff, op;
562 UInt c
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-port.h 512 // TypeWithSize<4>::UInt
523 // For now it only handles UInt (unsigned int) as that's all Google Test
531 typedef void UInt;
543 typedef unsigned int UInt;
552 typedef unsigned __int64 UInt;
555 typedef unsigned long long UInt; // NOLINT
561 typedef TypeWithSize<4>::UInt UInt32;
563 typedef TypeWithSize<8>::UInt UInt64;
  /external/valgrind/main/exp-sgcheck/tests/
bad_percentify.c 12 typedef unsigned int UInt;
31 UInt
84 static UInt vprintf_to_buf ( printf_buf_t* b,
87 UInt ret = 0;
96 static UInt vprintf_WRK ( OutputSink* sink,
101 UInt ret;
113 UInt VG_(vprintf) ( const HChar *format, va_list vargs )
119 UInt VG_(printf) ( const HChar *format, ... )
121 UInt ret;
177 UInt myvprintf_str ( void(*send)(HChar,void*)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/
mp4enc_api.h 27 typedef unsigned int UInt;
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4def.h 31 typedef unsigned int uint; typedef
57 typedef unsigned int UInt;
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/valgrind/main/cachegrind/
cg_merge.c 49 typedef unsigned int UInt;
121 UInt lno;
    [all...]

Completed in 1863 milliseconds

12 3