/external/neven/Embedded/common/src/b_BasicEm/ |
D | Math.c | 47 uint16 bbs_sqrt32( uint32 valA ) in bbs_sqrt32() argument 51 expL += ( ( valA >> ( expL + 0x10 ) ) != 0 ) << 4; in bbs_sqrt32() 52 expL += ( ( valA >> ( expL + 0x08 ) ) != 0 ) << 3; in bbs_sqrt32() 53 expL += ( ( valA >> ( expL + 0x04 ) ) != 0 ) << 2; in bbs_sqrt32() 54 expL += ( ( valA >> ( expL + 0x02 ) ) != 0 ) << 1; in bbs_sqrt32() 57 case 15: rootL += ( ( rootL + 0x8000 ) * ( rootL + 0x8000 ) <= valA ) << 15; in bbs_sqrt32() 58 case 14: rootL += ( ( rootL + 0x4000 ) * ( rootL + 0x4000 ) <= valA ) << 14; in bbs_sqrt32() 59 case 13: rootL += ( ( rootL + 0x2000 ) * ( rootL + 0x2000 ) <= valA ) << 13; in bbs_sqrt32() 60 case 12: rootL += ( ( rootL + 0x1000 ) * ( rootL + 0x1000 ) <= valA ) << 12; in bbs_sqrt32() 61 case 11: rootL += ( ( rootL + 0x0800 ) * ( rootL + 0x0800 ) <= valA ) << 11; in bbs_sqrt32() [all …]
|
D | Math.h | 46 #define bbs_abs( valA ) ( ( valA ) > 0 ? ( valA ) : -( valA ) ) argument 57 uint16 bbs_sqrt32( uint32 valA ); 65 uint8 bbs_sqrt16( uint16 valA ); 68 uint16 bbs_fastSqrt32( uint32 valA ); 73 uint32 bbs_invSqrt32( uint32 valA ); 78 int32 bbs_inv32( int32 valA ); 83 uint32 bbs_intLog2( uint32 valA ); 90 uint32 bbs_pow2M1( uint32 valA ); 97 uint32 bbs_pow2( int32 valA ); 108 uint32 bbs_exp( int32 valA ); [all …]
|
D | Functions.c | 40 uint16 bbs_swapBytes( uint16 valA ) in bbs_swapBytes() argument 42 return ( ( valA >> 8 ) & 0x00FF ) | ( ( valA << 8 ) & 0xFF00 ); in bbs_swapBytes() 209 uint32 bbs_memWriteUInt32( uint32 valA, in bbs_memWriteUInt32() argument 213 *memPtrA++ = bbs_swapBytes( ( uint16 )( ( valA >> 0 ) & 0xFFFF ) ); in bbs_memWriteUInt32() 214 *memPtrA++ = bbs_swapBytes( ( uint16 )( ( valA >> 16 ) & 0xFFFF ) ); in bbs_memWriteUInt32() 216 *memPtrA++ = ( valA >> 0 ) & 0xFFFF; in bbs_memWriteUInt32() 217 *memPtrA++ = ( valA >> 16 ) & 0xFFFF; in bbs_memWriteUInt32() 220 return bbs_SIZEOF16( valA ); in bbs_memWriteUInt32() 225 uint32 bbs_memWriteUInt16( uint16 valA, in bbs_memWriteUInt16() argument 229 *memPtrA++ = bbs_swapBytes( valA ); in bbs_memWriteUInt16() [all …]
|
D | String.c | 157 uint32 bbs_cString( int32 valA, char* dstA, uint32 bufSizeA ) in bbs_cString() argument 159 uint32 valL = ( valA < 0 ) ? -valA : valA; in bbs_cString() 162 if( valA < 0 ) in bbs_cString() 183 valL = ( valA < 0 ) ? -valA : valA; in bbs_cString()
|
D | Memory.c | 180 void* bbs_memset16( void* dstA, uint16 valA, uint32 sizeA ) in bbs_memset16() argument 187 *dstL++ = valA; in bbs_memset16() 194 void* bbs_memset32( void* dstA, uint32 valA, uint32 sizeA ) in bbs_memset32() argument 201 *dstL++ = valA; in bbs_memset32()
|
D | Memory.h | 57 void* bbs_memset16( void* dstA, uint16 valA, uint32 sizeA ); 63 void* bbs_memset32( void* dstA, uint32 valA, uint32 sizeA );
|
D | Phase.c | 261 phase16 bbs_atan16( uint32 valA ) in bbs_atan16() argument 263 uint32 oL = valA & 0x03FF; in bbs_atan16() 264 uint16 indexL = ( valA >> 10 ) << 1; in bbs_atan16()
|
D | Functions.h | 90 uint32 bbs_memWriteUInt32( uint32 valA, 94 uint32 bbs_memWriteUInt16( uint16 valA,
|
D | UInt32Arr.c | 233 uint32 valA ) in bbs_UInt32Arr_fill() argument 238 ptrA->arrPtrE[ iL ] = valA; in bbs_UInt32Arr_fill()
|
D | Int32Arr.c | 233 int32 valA ) in bbs_Int32Arr_fill() argument 238 ptrA->arrPtrE[ iL ] = valA; in bbs_Int32Arr_fill()
|
D | Int8Arr.c | 239 int8 valA ) in bbs_Int8Arr_fill() argument 244 ptrA->arrPtrE[ iL ] = valA; in bbs_Int8Arr_fill()
|
/external/llvm-project/polly/test/ScopInfo/ |
D | granularity_scalar-indep_cross-referencing-phi1.ll | 10 ; double valA = 42.0; 14 ; double tmp = valA; 15 ; valA = valB; 17 ; A[0] = valA; 26 %valA = phi double [42.0, %entry], [%valB, %for] 27 %valB = phi double [21.0, %entry], [%valA, %for] 28 store double %valA, double* %A 58 ; CHECK-NEXT: %valA = phi double [ 4.200000e+01, %entry ], [ %valB, %for ] 59 ; CHECK-NEXT: %valB = phi double [ 2.100000e+01, %entry ], [ %valA, %for ] 60 ; CHECK-NEXT: store double %valA, double* %A, align 8
|
D | granularity_scalar-indep_noepilogue.ll | 8 ; double valA = A[0]; 9 ; A[0] = valA; 12 ; phi = valA; 25 %valA = load double, double* %A 26 store double %valA, double* %A 30 %phi = phi double [%valA, %bodyA] 58 ; CHECK-NEXT: %valA = load double, double* %A, align 8 59 ; CHECK-NEXT: store double %valA, double* %A, align 8
|
D | granularity_scalar-indep_cross-referencing-phi2.ll | 10 ; double valA = 42.0; 14 ; double tmp = valA; 15 ; valA = valB; 17 ; A[0] = valA; 26 %valA = phi double [42.0, %entry], [%valB, %for] 29 %add = fadd double %valA, 0.1 59 ; CHECK-NEXT: %valA = phi double [ 4.200000e+01, %entry ], [ %valB, %for ] 62 ; CHECK-NEXT: %add = fadd double %valA, 1.000000e-01
|
D | granularity_scalar-indep_epilogue_last.ll | 8 ; double valA = A[0]; 9 ; A[0] = valA; 14 ; phi = valA; 27 %valA = load double, double* %A 28 store double %valA, double* %A 34 %phi = phi double [%valA, %bodyA] 62 ; CHECK-NEXT: %valA = load double, double* %A, align 8 63 ; CHECK-NEXT: store double %valA, double* %A, align 8
|
D | granularity_scalar-indep_epilogue.ll | 8 ; double valA = A[0]; 9 ; A[0] = valA; 25 %valA = load double, double* %A 26 store double %valA, double* %A 56 ; CHECK-NEXT: %valA = load double, double* %A, align 8 57 ; CHECK-NEXT: store double %valA, double* %A, align 8
|
D | granularity_scalar-indep_ordered.ll | 8 ; double valA = A[0]; 10 ; A[0] = valA; 24 %valA = load double, double* %A 26 store double %valA, double* %A 57 ; CHECK-NEXT: %valA = load double, double* %A, align 8 59 ; CHECK-NEXT: store double %valA, double* %A, align 8
|
D | granularity_scalar-indep.ll | 9 ; double valA = A[0]; 11 ; A[0] = valA; 25 %valA = load double, double* %A 27 store double %valA, double* %A 54 ; CHECK-NEXT: %valA = load double, double* %A, align 8 55 ; CHECK-NEXT: store double %valA, double* %A, align 8
|
D | granularity_scalar-indep_ordered-2.ll | 11 ; double valA = A[0]; 13 ; A[0] = valA; 29 %valA = load double, double* %A 31 store double %valA, double* %A 75 ; CHECK-NEXT: %valA = load double, double* %A, align 8 77 ; CHECK-NEXT: store double %valA, double* %A, align 8
|
/external/llvm-project/polly/test/Isl/CodeGen/ |
D | phi_with_one_exit_edge.ll | 22 %valA = load float, float* %A 23 %sumA = fadd float %valA, %valA 24 store float %valA, float* %A
|
D | phi_with_multi_exiting_edges_2.ll | 22 %valA = load float, float* %A 23 %sumA = fadd float %valA, %valA 24 store float %valA, float* %A
|
/external/llvm-project/clang/test/Analysis/ |
D | misc-ps-region-store.cpp | 242 bool foo(unsigned valA, long long &result) const; 243 bool foo(unsigned valA, int &result) const; 245 bool RDar9203355::foo(unsigned valA, int &result) const { in foo() argument 247 if (foo(valA, val) || in foo()
|
D | misc-ps.c | 71 void rdar10308201 (int valA, void *valB, unsigned valC) { in rdar10308201() argument 76 if (valA & (1<<0)) in rdar10308201()
|
/external/clang/test/Analysis/ |
D | misc-ps-region-store.cpp | 242 bool foo(unsigned valA, long long &result) const; 243 bool foo(unsigned valA, int &result) const; 245 bool RDar9203355::foo(unsigned valA, int &result) const { in foo() argument 247 if (foo(valA, val) || in foo()
|
D | misc-ps.c | 71 void rdar10308201 (int valA, void *valB, unsigned valC) { in rdar10308201() argument 76 if (valA & (1<<0)) in rdar10308201()
|