Home
last modified time | relevance | path

Searched refs:count (Results 1 – 25 of 100) sorted by relevance

1234

/optee_os-3.20.0/core/pta/tests/
A Dlockdep.c31 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 Dprimitives.h55 { 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 Ds_shiftRightJam128.c45 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 Ds_countLeadingZeros64.c48 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 Ds_shiftRightJam128Extra.c46 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 Ds_countLeadingZeros32.c48 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 Ds_shiftRightJam64Extra.c46 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 Ds_shiftRightJam32.c43 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 Ds_shiftRightJam64.c43 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 Ds_shiftRightJam256M.c49 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 Ds_shortShiftLeft128.c45 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 Ds_shortShiftRight128.c45 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 Ds_shortShiftRightJamM.c48 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 Ds_shortShiftRightJam128.c46 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 Ds_shortShiftRightJam128Extra.c46 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 Ds_shortShiftRightJam64.c43 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 Ds_shortShiftLeftM.c48 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 Ds_shortShiftRightM.c48 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 Ds_shortShiftLeft64To96M.c46 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 Ds_shortShiftRightJam64Extra.c46 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 Dstrncpy.c105 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 Dimx_mu.c45 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 Dbase.c124 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 Dprocessing_ec.c359 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 Dassert.h52 #define ___static_assert(count, ...) __static_assert_ ## count(__VA_ARGS__) argument
53 #define __static_assert(count, ...) ___static_assert(count, __VA_ARGS__) argument

Completed in 24 milliseconds

1234