/optee_os-3.20.0/core/pta/tests/ |
A D | lockdep.c | 31 count++; in self_test_lockdep1() 36 count++; in self_test_lockdep1() 41 count++; in self_test_lockdep1() 46 count++; in self_test_lockdep1() 51 count++; in self_test_lockdep1() 56 count++; in self_test_lockdep1() 61 count++; in self_test_lockdep1() 93 count++; in self_test_lockdep2() 98 count++; in self_test_lockdep2() 103 count++; in self_test_lockdep2() [all …]
|
/optee_os-3.20.0/lib/libutils/isoc/arch/arm/softfloat/source/include/ |
A D | primitives.h | 55 { return a>>count | ((a & (((uint_fast64_t) 1<<count) - 1)) != 0); } in softfloat_shortShiftRightJam64() 75 (count < 31) ? a>>count | ((uint32_t) (a<<(-count & 31)) != 0) in softfloat_shiftRightJam32() 97 (count < 63) ? a>>count | ((uint64_t) (a<<(-count & 63)) != 0) in softfloat_shiftRightJam64() 122 count = 16; in softfloat_countLeadingZeros32() 126 count += 8; in softfloat_countLeadingZeros32() 130 return count; in softfloat_countLeadingZeros32() 249 z.v64 = a64<<count | a0>>(-count & 63); in softfloat_shortShiftLeft128() 250 z.v0 = a0<<count; in softfloat_shortShiftLeft128() 271 z.v0 = a64<<(-count & 63) | a0>>count; in softfloat_shortShiftRight128() 292 z.v = a>>count; in softfloat_shortShiftRightJam64Extra() [all …]
|
/optee_os-3.20.0/lib/libutils/isoc/arch/arm/softfloat/source/ |
A D | s_shiftRightJam128.c | 45 softfloat_shiftRightJam128( uint64_t a64, uint64_t a0, uint_fast32_t count ) in softfloat_shiftRightJam128() argument 50 if ( count < 64 ) { in softfloat_shiftRightJam128() 51 negCount = -count; in softfloat_shiftRightJam128() 52 z.v64 = a64>>count; in softfloat_shiftRightJam128() 54 a64<<(negCount & 63) | a0>>count in softfloat_shiftRightJam128() 59 (count < 127) in softfloat_shiftRightJam128() 60 ? a64>>(count & 63) in softfloat_shiftRightJam128() 61 | (((a64 & (((uint_fast64_t) 1<<(count & 63)) - 1)) | a0) in softfloat_shiftRightJam128()
|
A D | s_countLeadingZeros64.c | 48 uint_fast8_t count; in softfloat_countLeadingZeros64() local 51 count = 0; in softfloat_countLeadingZeros64() 54 count = 32; in softfloat_countLeadingZeros64() 61 count += 16; in softfloat_countLeadingZeros64() 65 count += 8; in softfloat_countLeadingZeros64() 68 count += softfloat_countLeadingZeros8[a32>>24]; in softfloat_countLeadingZeros64() 69 return count; in softfloat_countLeadingZeros64()
|
A D | s_shiftRightJam128Extra.c | 46 uint64_t a64, uint64_t a0, uint64_t extra, uint_fast32_t count ) in softfloat_shiftRightJam128Extra() argument 51 negCount = -count; in softfloat_shiftRightJam128Extra() 52 if ( count < 64 ) { in softfloat_shiftRightJam128Extra() 53 z.v.v64 = a64>>count; in softfloat_shiftRightJam128Extra() 54 z.v.v0 = a64<<(negCount & 63) | a0>>count; in softfloat_shiftRightJam128Extra() 58 if ( count == 64 ) { in softfloat_shiftRightJam128Extra() 63 if ( count < 128 ) { in softfloat_shiftRightJam128Extra() 64 z.v.v0 = a64>>(count & 63); in softfloat_shiftRightJam128Extra() 68 z.extra = (count == 128) ? a64 : (a64 != 0); in softfloat_shiftRightJam128Extra()
|
A D | s_countLeadingZeros32.c | 48 uint_fast8_t count; in softfloat_countLeadingZeros32() local 50 count = 0; in softfloat_countLeadingZeros32() 52 count = 16; in softfloat_countLeadingZeros32() 56 count += 8; in softfloat_countLeadingZeros32() 59 count += softfloat_countLeadingZeros8[a>>24]; in softfloat_countLeadingZeros32() 60 return count; in softfloat_countLeadingZeros32()
|
A D | s_shiftRightJam64Extra.c | 46 uint64_t a, uint64_t extra, uint_fast32_t count ) in softfloat_shiftRightJam64Extra() argument 50 if ( count < 64 ) { in softfloat_shiftRightJam64Extra() 51 z.v = a>>count; in softfloat_shiftRightJam64Extra() 52 z.extra = a<<(-count & 63); in softfloat_shiftRightJam64Extra() 55 z.extra = (count == 64) ? a : (a != 0); in softfloat_shiftRightJam64Extra()
|
A D | s_shiftRightJam32.c | 43 uint32_t softfloat_shiftRightJam32( uint32_t a, uint_fast16_t count ) in softfloat_shiftRightJam32() argument 47 (count < 31) ? a>>count | ((uint32_t) (a<<(-count & 31)) != 0) in softfloat_shiftRightJam32()
|
A D | s_shiftRightJam64.c | 43 uint64_t softfloat_shiftRightJam64( uint64_t a, uint_fast32_t count ) in softfloat_shiftRightJam64() argument 47 (count < 63) ? a>>count | ((uint64_t) (a<<(-count & 63)) != 0) in softfloat_shiftRightJam64()
|
A D | s_shiftRightJam256M.c | 49 uint_fast8_t count, in softfloat_shortShiftRightJamM() argument 57 negCount = -count; in softfloat_shortShiftRightJamM() 61 partWordZ = wordA>>count; in softfloat_shortShiftRightJamM() 62 if ( partWordZ<<count != wordA ) partWordZ |= 1; in softfloat_shortShiftRightJamM() 67 partWordZ = wordA>>count; in softfloat_shortShiftRightJamM() 75 const uint64_t *aPtr, uint_fast32_t count, uint64_t *zPtr ) in softfloat_shiftRightJam256M() argument 83 wordCount = count>>6; in softfloat_shiftRightJam256M() 97 innerCount = count & 63; in softfloat_shiftRightJam256M()
|
A D | s_shortShiftLeft128.c | 45 softfloat_shortShiftLeft128( uint64_t a64, uint64_t a0, uint_fast8_t count ) in softfloat_shortShiftLeft128() argument 49 z.v64 = a64<<count | a0>>(-count & 63); in softfloat_shortShiftLeft128() 50 z.v0 = a0<<count; in softfloat_shortShiftLeft128()
|
A D | s_shortShiftRight128.c | 45 softfloat_shortShiftRight128( uint64_t a64, uint64_t a0, uint_fast8_t count ) in softfloat_shortShiftRight128() argument 49 z.v64 = a64>>count; in softfloat_shortShiftRight128() 50 z.v0 = a64<<(-count & 63) | a0>>count; in softfloat_shortShiftRight128()
|
A D | s_shortShiftRightJamM.c | 48 uint_fast8_t count, in softfloat_shortShiftRightJamM() argument 56 negCount = -count; in softfloat_shortShiftRightJamM() 60 partWordZ = wordA>>count; in softfloat_shortShiftRightJamM() 61 if ( partWordZ<<count != wordA ) partWordZ |= 1; in softfloat_shortShiftRightJamM() 66 partWordZ = wordA>>count; in softfloat_shortShiftRightJamM()
|
A D | s_shortShiftRightJam128.c | 46 uint64_t a64, uint64_t a0, uint_fast8_t count ) in softfloat_shortShiftRightJam128() argument 51 negCount = -count; in softfloat_shortShiftRightJam128() 52 z.v64 = a64>>count; in softfloat_shortShiftRightJam128() 54 a64<<(negCount & 63) | a0>>count in softfloat_shortShiftRightJam128()
|
A D | s_shortShiftRightJam128Extra.c | 46 uint64_t a64, uint64_t a0, uint64_t extra, uint_fast8_t count ) in softfloat_shortShiftRightJam128Extra() argument 51 negCount = -count; in softfloat_shortShiftRightJam128Extra() 52 z.v.v64 = a64>>count; in softfloat_shortShiftRightJam128Extra() 53 z.v.v0 = a64<<(negCount & 63) | a0>>count; in softfloat_shortShiftRightJam128Extra()
|
A D | s_shortShiftRightJam64.c | 43 uint64_t softfloat_shortShiftRightJam64( uint64_t a, uint_fast8_t count ) in softfloat_shortShiftRightJam64() argument 46 return a>>count | ((a & (((uint_fast64_t) 1<<count) - 1)) != 0); in softfloat_shortShiftRightJam64()
|
A D | s_shortShiftLeftM.c | 48 uint_fast8_t count, in softfloat_shortShiftLeftM() argument 56 negCount = -count; in softfloat_shortShiftLeftM() 59 partWordZ = aPtr[index]<<count; in softfloat_shortShiftLeftM() 64 partWordZ = wordA<<count; in softfloat_shortShiftLeftM()
|
A D | s_shortShiftRightM.c | 48 uint_fast8_t count, in softfloat_shortShiftRightM() argument 56 negCount = -count; in softfloat_shortShiftRightM() 59 partWordZ = aPtr[index]>>count; in softfloat_shortShiftRightM() 64 partWordZ = wordA>>count; in softfloat_shortShiftRightM()
|
A D | s_shortShiftLeft64To96M.c | 46 uint64_t a, uint_fast8_t count, uint32_t *zPtr ) in softfloat_shortShiftLeft64To96M() argument 49 zPtr[indexWord( 3, 0 )] = (uint32_t) a<<count; in softfloat_shortShiftLeft64To96M() 50 a >>= 32 - count; in softfloat_shortShiftLeft64To96M()
|
A D | s_shortShiftRightJam64Extra.c | 46 uint64_t a, uint64_t extra, uint_fast8_t count ) in softfloat_shortShiftRightJam64Extra() argument 50 z.v = a>>count; in softfloat_shortShiftRightJam64Extra() 51 z.extra = a<<(-count & 63) | (extra != 0); in softfloat_shortShiftRightJam64Extra()
|
/optee_os-3.20.0/lib/libutils/isoc/newlib/ |
A D | strncpy.c | 105 size_t count) 113 while (count > 0) 115 --count; 119 while (count-- > 0) 130 if (!UNALIGNED (src, dst) && !TOO_SMALL (count)) 137 while (count >= sizeof (long int) && !DETECTNULL(*aligned_src)) 139 count -= sizeof (long int); 147 while (count > 0) 149 --count; 154 while (count-- > 0)
|
/optee_os-3.20.0/core/drivers/imx/mu/ |
A D | imx_mu.c | 45 unsigned int count = 0; in imx_mu_receive_msg() local 71 for (count = 1; count < msg->header.size; count++) { in imx_mu_receive_msg() 72 res = imx_mu_plat_receive(base, count % nb_channel, in imx_mu_receive_msg() 73 &msg->data.u32[count - 1]); in imx_mu_receive_msg() 90 unsigned int count = 0; in imx_mu_send_msg() local 108 for (count = 1; count < msg->header.size; count++) { in imx_mu_send_msg() 109 res = imx_mu_plat_send(base, count % nb_channel, in imx_mu_send_msg() 110 msg->data.u32[count - 1]); in imx_mu_send_msg()
|
/optee_os-3.20.0/core/drivers/scmi-msg/ |
A D | base.c | 124 unsigned int count = 0; in count_protocols_in_list() local 127 while (protocol_list[count]) in count_protocols_in_list() 128 count++; in count_protocols_in_list() 130 return count; in count_protocols_in_list() 140 unsigned int count = 0; in discover_list_protocols() local 150 count = count_protocols_in_list(list); in discover_list_protocols() 151 if (count > a2p->skip) in discover_list_protocols() 152 count = MIN(count - a2p->skip, msg->out_size - sizeof(p2a)); in discover_list_protocols() 154 count = 0; in discover_list_protocols() 156 p2a.num_protocols = count; in discover_list_protocols() [all …]
|
/optee_os-3.20.0/ta/pkcs11/src/ |
A D | processing_ec.c | 359 count++; in load_tee_ec_key_attrs() 364 count++; in load_tee_ec_key_attrs() 369 count++; in load_tee_ec_key_attrs() 371 if (count == 3) in load_tee_ec_key_attrs() 384 count++; in load_tee_ec_key_attrs() 389 count++; in load_tee_ec_key_attrs() 394 count++; in load_tee_ec_key_attrs() 399 count++; in load_tee_ec_key_attrs() 665 count++; in load_tee_eddsa_key_attrs() 681 count++; in load_tee_eddsa_key_attrs() [all …]
|
/optee_os-3.20.0/lib/libutils/isoc/include/ |
A D | assert.h | 52 #define ___static_assert(count, ...) __static_assert_ ## count(__VA_ARGS__) argument 53 #define __static_assert(count, ...) ___static_assert(count, __VA_ARGS__) argument
|