Searched refs:UShort (Results 1 - 25 of 121) sorted by relevance

12345

/external/valgrind/none/tests/
H A Dshortpush.c2 typedef unsigned short UShort; typedef
4 UShort mul16 ( UShort a, UShort b );
8 UShort x = mul16 ( 10, 20 );
12 UShort mul16 ( UShort a, UShort b )
/external/valgrind/VEX/pub/
H A Dlibvex_guest_x86.h190 UShort guest_CS;
191 UShort guest_DS;
192 UShort guest_ES;
193 UShort guest_FS;
194 UShort guest_GS;
195 UShort guest_SS;
247 UShort LimitLow;
248 UShort BaseLow;
H A Dlibvex_basictypes.h51 typedef unsigned short UShort; typedef
78 UShort w16[8];
88 UShort w16[16];
118 static inline UShort toUShort ( Int x ) {
120 return (UShort)x;
/external/valgrind/coregrind/
H A Dpub_core_libcfile.h67 extern UShort VG_(htons) ( UShort x );
68 extern UShort VG_(ntohs) ( UShort x );
H A Dpub_core_transtab.h94 typedef UShort SECno; // SECno type identifies a sector
95 typedef UShort TTEno; // TTEno type identifies a TT entry in a sector.
/external/valgrind/VEX/priv/
H A Dguest_generic_x87.h81 UShort env[14];
101 UShort env[7];
H A Dhost_generic_simd64.c64 static inline ULong mk16x4 ( UShort w3, UShort w2,
65 UShort w1, UShort w0 ) {
71 static inline UShort sel16x4_3 ( ULong w64 ) {
75 static inline UShort sel16x4_2 ( ULong w64 ) {
79 static inline UShort sel16x4_1 ( ULong w64 ) {
83 static inline UShort sel16x4_0 ( ULong w64 ) {
169 static inline UShort qadd16U ( UShort x
[all...]
H A Dguest_generic_x87.c1076 UShort* argL = (UShort*)argLV;
1077 UShort* argR = (UShort*)argRV;
1080 UShort cL = argL[i];
1081 UShort cR = argR[i];
1111 UShort* argL = (UShort*)argLV;
1112 UShort* argR = (UShort*)argR
[all...]
H A Dhost_generic_simd128.c71 static inline UShort max16U ( UShort xx, UShort yy )
76 static inline UShort min16U ( UShort xx, UShort yy )
113 static inline UShort qnarrow32Sto16U ( UInt xx0 )
118 return (UShort)xx;
121 static inline UShort narrow32to16 ( UInt xx )
123 return (UShort)x
[all...]
H A Dguest_x86_helpers.c506 case X86G_CC_OP_ADDW: ACTIONS_ADD( 16, UShort );
510 case X86G_CC_OP_ADCW: ACTIONS_ADC( 16, UShort );
514 case X86G_CC_OP_SUBW: ACTIONS_SUB( 16, UShort );
518 case X86G_CC_OP_SBBW: ACTIONS_SBB( 16, UShort );
522 case X86G_CC_OP_LOGICW: ACTIONS_LOGIC( 16, UShort );
526 case X86G_CC_OP_INCW: ACTIONS_INC( 16, UShort );
530 case X86G_CC_OP_DECW: ACTIONS_DEC( 16, UShort );
534 case X86G_CC_OP_SHLW: ACTIONS_SHL( 16, UShort );
538 case X86G_CC_OP_SHRW: ACTIONS_SHR( 16, UShort );
542 case X86G_CC_OP_ROLW: ACTIONS_ROL( 16, UShort );
[all...]
/external/swiftshader/src/Reactor/
H A DReactor.hpp38 class UShort;
213 explicit Byte(RValue<UShort> cast);
375 class UShort : public LValue<UShort> class in namespace:sw
378 UShort(Argument<UShort> argument);
380 explicit UShort(RValue<UInt> cast);
381 explicit UShort(RValue<Int> cast);
383 UShort() = default;
384 UShort(unsigne
[all...]
H A DSubzeroReactor.cpp1581 Byte::Byte(RValue<UShort> cast)
2287 UShort::UShort(Argument<UShort> argument)
2292 UShort::UShort(RValue<UInt> cast)
2294 Value *integer = Nucleus::createTrunc(cast.value, UShort::getType());
2299 UShort::UShort(RValue<Int> cast)
2301 Value *integer = Nucleus::createTrunc(cast.value, UShort
[all...]
H A DLLVMReactor.cpp1051 Byte::Byte(RValue<UShort> cast)
1787 UShort::UShort(Argument<UShort> argument) function in class:sw::UShort
1792 UShort::UShort(RValue<UInt> cast) function in class:sw::UShort
1794 Value *integer = Nucleus::createTrunc(cast.value, UShort::getType());
1799 UShort::UShort(RValue<Int> cast) function in class:sw::UShort
1801 Value *integer = Nucleus::createTrunc(cast.value, UShort
1806 UShort::UShort(unsigned short x) function in class:sw::UShort
1811 UShort::UShort(RValue<UShort> rhs) function in class:sw::UShort
1816 UShort::UShort(const UShort &rhs) function in class:sw::UShort
1822 UShort::UShort(const Reference<UShort> &rhs) function in class:sw::UShort
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dpriv_misc.h97 DEF_READ(UShort); variable
104 UChar* ML_(write_UShort)( UChar* ptr, UShort val );
107 DEF_WRITE(UShort); variable
H A Dpriv_image.h121 UShort ML_(img_get_UShort)(DiImage* img, DiOffT offset);
308 static inline UShort ML_(cur_read_UShort) ( DiCursor c ) {
309 UShort r = ML_(img_get_UShort)( c.img, c.ioff );
312 static inline UShort ML_(cur_step_UShort) ( DiCursor* c ) {
313 UShort r = ML_(img_get_UShort)( c->img, c->ioff );
314 c->ioff += sizeof(UShort);
H A Dmisc.c135 UShort ML_(readUAS_UShort) ( const UChar* data ) {
147 UChar *ML_(writeUAS_UShort) ( UChar* ptr, UShort val ) {
155 return ptr + sizeof(UShort);
/external/valgrind/none/tests/amd64/
H A Dcrc32.c8 typedef unsigned short int UShort; typedef
21 UInt do_s_crc32w ( UInt crcIn, UShort w )
52 UInt do_h_crc32w ( UInt crcIn, UShort w )
90 UInt do_h_crc32w_mem ( UInt crcIn, UShort* a )
126 UShort w = 0xed78;;
160 crc = do_h_crc32w_mem( crc, (UShort*)&b[i+al] );
H A Dpcmpstr64w.c13 typedef unsigned short UShort; typedef
23 UShort uShort[8];
232 UShort* argL = (UShort*)argLV;
233 UShort* argR = (UShort*)argRV;
236 UShort cL = argL[i];
237 UShort cR = argR[i];
267 UShort* argL = (UShort*)argL
[all...]
H A Dx87trigOOR.c10 typedef unsigned short int UShort; typedef
15 typedef struct { Double arg; Double st0; Double st1; UShort fpusw; } Res;
/external/swiftshader/src/Renderer/
H A DBlitter.cpp252 c.x = Float(Int(*Pointer<UShort>(element)));
350 c.x = Float(Int(*Pointer<UShort>(element + 0)));
351 c.y = Float(Int(*Pointer<UShort>(element + 2)));
379 c.x = Float(Int((*Pointer<UShort>(element) & UShort(0xF800)) >> UShort(11)));
380 c.y = Float(Int((*Pointer<UShort>(element) & UShort(0x07E0)) >> UShort(5)));
381 c.z = Float(Int(*Pointer<UShort>(elemen
[all...]
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-x86-solaris.c96 UShort cs, ds, ss, es, fs, gs;
190 (Addr)&uc->uc_mcontext.gregs[VKI_CS], sizeof(UShort));
192 (Addr)(&uc->uc_mcontext.gregs[VKI_CS]) + 2, sizeof(UShort));
195 (Addr)&uc->uc_mcontext.gregs[VKI_DS], sizeof(UShort));
197 (Addr)(&uc->uc_mcontext.gregs[VKI_DS]) + 2, sizeof(UShort));
200 (Addr)&uc->uc_mcontext.gregs[VKI_SS], sizeof(UShort));
202 (Addr)(&uc->uc_mcontext.gregs[VKI_SS]) + 2, sizeof(UShort));
205 (Addr)&uc->uc_mcontext.gregs[VKI_ES], sizeof(UShort));
207 (Addr)(&uc->uc_mcontext.gregs[VKI_ES]) + 2, sizeof(UShort));
210 (Addr)&uc->uc_mcontext.gregs[VKI_FS], sizeof(UShort));
[all...]
H A Dpriv_syswrap-solaris.h52 extern UInt ML_(fletcher32)(UShort *buf, SizeT blocks);
/external/swiftshader/src/Shader/
H A DVertexRoutine.cpp317 else // Stream: UShort, Shader attrib: Int/UInt, no type conversion
496 UShort x0 = *Pointer<UShort>(source0 + 0);
497 UShort x1 = *Pointer<UShort>(source1 + 0);
498 UShort x2 = *Pointer<UShort>(source2 + 0);
499 UShort x3 = *Pointer<UShort>(source3 + 0);
509 UShort y
[all...]
/external/valgrind/none/tests/ppc32/
H A Dldstrev.c5 typedef unsigned short UShort; typedef
/external/valgrind/none/tests/x86/
H A Dx87trigOOR.c10 typedef unsigned short int UShort; typedef
15 typedef struct { Double arg; Double st0; Double st1; UShort fpusw; } Res;

Completed in 2036 milliseconds

12345