Searched refs:count (Results 1 – 4 of 4) sorted by relevance
| /libev/ |
| H A D | ev.c | 1075 …const uint8_t ecb_rotl8 (uint8_t x, unsigned int count) { return (x >> ( 8 - count)) | (x << co… in ecb_rotl8() argument 1076 …const uint8_t ecb_rotr8 (uint8_t x, unsigned int count) { return (x << ( 8 - count)) | (x >> co… in ecb_rotr8() argument 1077 …const uint16_t ecb_rotl16 (uint16_t x, unsigned int count) { return (x >> (16 - count)) | (x << co… in ecb_rotl16() argument 1078 …const uint16_t ecb_rotr16 (uint16_t x, unsigned int count) { return (x << (16 - count)) | (x >> co… in ecb_rotr16() argument 1079 …const uint32_t ecb_rotl32 (uint32_t x, unsigned int count) { return (x >> (32 - count)) | (x << co… in ecb_rotl32() argument 1080 …const uint32_t ecb_rotr32 (uint32_t x, unsigned int count) { return (x << (32 - count)) | (x >> co… in ecb_rotr32() argument 1081 …const uint64_t ecb_rotl64 (uint64_t x, unsigned int count) { return (x >> (64 - count)) | (x << co… in ecb_rotl64() argument 1082 …const uint64_t ecb_rotr64 (uint64_t x, unsigned int count) { return (x << (64 - count)) | (x >> co… in ecb_rotr64() argument 3266 unsigned int count = 0; in ev_pending_count() local 3269 count += pendingcnt [pri]; in ev_pending_count() [all …]
|
| H A D | ev_poll.c | 43 pollidx_init (int *base, int count) in pollidx_init() argument 47 while (count--) in pollidx_init()
|
| H A D | Changes | 160 - ev_loop(count|depth) didn't return anything (Robin Haberkorn).
|
| H A D | ev.pod | 731 Returns the current iteration count for the event loop, which is identical 750 throwing an exception etc.), doesn't count as "exit" - consider this 914 Ref/unref can be used to add or remove a reference count on the event 916 count is nonzero, C<ev_run> will not return on its own. 2056 a call to C<gettimeofday> might return a second count that is one higher 2845 priority are pending (prepare, check and other idle watchers do not count
|