/l4re-core-master/libgcc/lib/ARCH-arm/ |
A D | l4-atomic.c | 98 unsigned int mask, shift, oldval, newval; \ 102 mask = MASK_##WIDTH << shift; \ 107 INF_OP (unsigned int) val)) << shift) & mask; \ 112 return (RETURN & mask) >> shift; \ 192 mask = MASK_##WIDTH << shift; \ 200 return (actual_oldval & mask) >> shift; \ 203 | (((unsigned int) newval << shift) & mask); \ 262 unsigned int oldval, newval, shift, mask; \ 266 mask = MASK_##WIDTH << shift; \ 271 | (((unsigned int) val << shift) & mask); \ [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/arm/ |
A D | ioperm.c | 55 unsigned int shift; member 65 unsigned int shift; member 74 #define IO_ADDR(port) (io.base + ((port) << io.shift)) 114 && ! sysctl (ioshift_name, 3, &io.shift, &len, NULL, 0)) { in init_iosys() 123 if (sscanf (systype, "%li,%i", &io.io_base, &io.shift) == 2) { in init_iosys() 156 io.shift = platform[i].shift; in init_iosys() 187 io.base = (unsigned long int) mmap (0, MAX_PORT << io.shift, in ioperm()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/ryu/ |
A D | generic_128.h | 365 …const uint64_t* const a, const uint64_t* const b, const uint32_t shift, const uint32_t corr, uint6… in mul_128_256_shift() argument 366 assert(shift > 0); in mul_128_256_shift() 367 assert(shift < 256); in mul_128_256_shift() 393 if (shift < 128) { in mul_128_256_shift() 394 const uint128_t r0 = corr + ((p0 >> shift) | (p1 << (128 - shift))); in mul_128_256_shift() 395 const uint128_t r1 = ((p1 >> shift) | (p2 << (128 - shift))) + (r0 < corr); in mul_128_256_shift() 400 } else if (shift == 128) { in mul_128_256_shift() 408 const uint128_t r0 = corr + ((p1 >> (shift - 128)) | (p2 << (256 - shift))); in mul_128_256_shift() 409 const uint128_t r1 = (p2 >> (shift - 128)) + (r0 < corr); in mul_128_256_shift()
|
A D | f2s_intrinsics.h | 63 static inline uint32_t mulShift32(const uint32_t m, const uint64_t factor, const int32_t shift) { in mulShift32() argument 64 assert(shift > 32); in mulShift32() 81 if (shift >= 64) { in mulShift32() 84 return (uint32_t)(bits1Hi >> (shift - 64)); in mulShift32() 86 const int32_t s = shift - 32; in mulShift32() 91 const uint64_t shiftedSum = sum >> (shift - 32); in mulShift32()
|
/l4re-core-master/libstdc++-v3/contrib/gcc-4.9/ |
A D | unwind-pe.h | 133 unsigned int shift = 0; in read_uleb128() local 141 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_uleb128() 142 shift += 7; in read_uleb128() 155 unsigned int shift = 0; in read_sleb128() local 163 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_sleb128() 164 shift += 7; in read_sleb128() 169 if (shift < 8 * sizeof(result) && (byte & 0x40) != 0) in read_sleb128() 170 result |= -(((_uleb128_t)1L) << shift); in read_sleb128()
|
/l4re-core-master/libstdc++-v3/contrib/gcc-5/ |
A D | unwind-pe.h | 133 unsigned int shift = 0; in read_uleb128() local 141 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_uleb128() 142 shift += 7; in read_uleb128() 155 unsigned int shift = 0; in read_sleb128() local 163 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_sleb128() 164 shift += 7; in read_sleb128() 169 if (shift < 8 * sizeof(result) && (byte & 0x40) != 0) in read_sleb128() 170 result |= -(((_uleb128_t)1L) << shift); in read_sleb128()
|
/l4re-core-master/libstdc++-v3/contrib/gcc-7/ |
A D | unwind-pe.h | 133 unsigned int shift = 0; in read_uleb128() local 141 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_uleb128() 142 shift += 7; in read_uleb128() 155 unsigned int shift = 0; in read_sleb128() local 163 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_sleb128() 164 shift += 7; in read_sleb128() 169 if (shift < 8 * sizeof(result) && (byte & 0x40) != 0) in read_sleb128() 170 result |= -(((_uleb128_t)1L) << shift); in read_sleb128()
|
/l4re-core-master/libstdc++-v3/contrib/gcc-6/ |
A D | unwind-pe.h | 133 unsigned int shift = 0; in read_uleb128() local 141 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_uleb128() 142 shift += 7; in read_uleb128() 155 unsigned int shift = 0; in read_sleb128() local 163 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_sleb128() 164 shift += 7; in read_sleb128() 169 if (shift < 8 * sizeof(result) && (byte & 0x40) != 0) in read_sleb128() 170 result |= -(((_uleb128_t)1L) << shift); in read_sleb128()
|
/l4re-core-master/libstdc++-v3/contrib/gcc-8/ |
A D | unwind-pe.h | 133 unsigned int shift = 0; in read_uleb128() local 141 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_uleb128() 142 shift += 7; in read_uleb128() 155 unsigned int shift = 0; in read_sleb128() local 163 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_sleb128() 164 shift += 7; in read_sleb128() 169 if (shift < 8 * sizeof(result) && (byte & 0x40) != 0) in read_sleb128() 170 result |= -(((_uleb128_t)1L) << shift); in read_sleb128()
|
/l4re-core-master/libstdc++-v3/contrib/gcc-9/ |
A D | unwind-pe.h | 133 unsigned int shift = 0; in read_uleb128() local 141 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_uleb128() 142 shift += 7; in read_uleb128() 155 unsigned int shift = 0; in read_sleb128() local 163 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_sleb128() 164 shift += 7; in read_sleb128() 169 if (shift < 8 * sizeof(result) && (byte & 0x40) != 0) in read_sleb128() 170 result |= -(((_uleb128_t)1L) << shift); in read_sleb128()
|
/l4re-core-master/libstdc++-v3/contrib/gcc-10/ |
A D | unwind-pe.h | 133 unsigned int shift = 0; in read_uleb128() local 141 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_uleb128() 142 shift += 7; in read_uleb128() 155 unsigned int shift = 0; in read_sleb128() local 163 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_sleb128() 164 shift += 7; in read_sleb128() 169 if (shift < 8 * sizeof(result) && (byte & 0x40) != 0) in read_sleb128() 170 result |= -(((_uleb128_t)1L) << shift); in read_sleb128()
|
/l4re-core-master/libstdc++-v3/contrib/gcc-11/ |
A D | unwind-pe.h | 133 unsigned int shift = 0; in read_uleb128() local 141 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_uleb128() 142 shift += 7; in read_uleb128() 155 unsigned int shift = 0; in read_sleb128() local 163 result |= ((_uleb128_t)byte & 0x7f) << shift; in read_sleb128() 164 shift += 7; in read_sleb128() 169 if (shift < 8 * sizeof(result) && (byte & 0x40) != 0) in read_sleb128() 170 result |= -(((_uleb128_t)1L) << shift); in read_sleb128()
|
/l4re-core-master/l4util/lib/src/ |
A D | keymap.c | 25 int l4util_map_event_to_keymap(unsigned value, unsigned shift) in l4util_map_event_to_keymap() argument 27 if (value < 128 && shift < 2) in l4util_map_event_to_keymap() 28 return keymap[value][shift]; in l4util_map_event_to_keymap()
|
A D | llulc.cc | 106 static void shift(l4ullulock_t *t) in shift() function in Lock 280 Lock::shift(t); in l4ullulock_unlock()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdlib/ |
A D | a64l.c | 43 int shift = 0; in a64l() local 57 result |= value << shift; in a64l() 58 shift += 6; in a64l()
|
/l4re-core-master/l4re/include/video/ |
A D | colors | 46 Color_component(unsigned char bits, unsigned char shift) 47 : _bits(bits), _shift(shift) {} 59 unsigned char shift() const { return _shift; } 95 s.printf("%d(%d)", (int)size(), (int)shift()); 195 * \param rs Red component shift. 197 * \param gs Green component shift. 199 * \param bs Blue component shift. 242 (int)r().size(), (int)r().shift(), 243 (int)g().size(), (int)g().shift(), 244 (int)b().size(), (int)b().shift(), [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/ia64/ |
A D | memcpy.S | 115 #define LOOP(shift) \ argument 117 .loop##shift : \ 124 (p[MEMLAT]) shrp tmp3 = r[MEMLAT], s[MEMLAT+1], shift ; \ 132 (p[MEMLAT]) shrp tmp4 = s[MEMLAT], r[MEMLAT], shift ; \ 133 br.ctop.sptk.many .loop##shift \ 139 #define LOOP(shift) \ argument 141 .loop##shift : \ 147 (p[MEMLAT]) shrp tmp3 = r[MEMLAT], s[MEMLAT+1], shift ; \ 154 (p[MEMLAT]) shrp tmp4 = s[MEMLAT], r[MEMLAT], shift ; \ 155 br.ctop.sptk.many .loop##shift \
|
A D | memmove.S | 64 #define LOOP(shift) \ argument 66 .loop##shift : \ 69 (p[MEMLAT]) shrp value = r[MEMLAT], r[MEMLAT+1], shift ; \ 72 br.ctop.sptk .loop##shift ; \
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sparc/sparcv7/ |
A D | umul.S | 59 mulscc %o4, %g0, %o4 ! final shift 130 mulscc %o4, %g0, %o4 ! final shift 147 sll %o4, 12, %o0 ! shift middle bits left 12 148 srl %o5, 20, %o5 ! shift low bits right 20
|
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/locale/ |
A D | gen_wctype.c | 162 static size_t newopt(unsigned char *ut, size_t usize, int shift, table_data *tbl); 705 size_t newopt(unsigned char *ut, size_t usize, int shift, table_data *tbl) in newopt() argument 722 blocksize = 1 << shift; in newopt() 723 numblocks = usize >> shift; in newopt() 779 shift2, shift, (unsigned long) t); in newopt() 790 tbl->ii_shift = shift; in newopt() 801 shift2, shift); in newopt() 804 tbl->ti_shift = shift; in newopt()
|
/l4re-core-master/l4util/include/ |
A D | keymap.h | 19 int l4util_map_event_to_keymap(unsigned value, unsigned shift);
|
/l4re-core-master/moe/server/src/ |
A D | malloc.cc | 57 void *alloc(size_t shift) throw() in alloc() argument 59 if (shift != _bin_shift || _used >= _num_bins) in alloc()
|
/l4re-core-master/l4re_c/include/video/ |
A D | colors.h | 34 unsigned char shift; ///< offset in pixel member
|
/l4re-core-master/uclibc/lib/contrib/uclibc/include/sys/ |
A D | timex.h | 49 int shift; /* interval duration (s) (shift) (ro) */ member
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/metag/ |
A D | memchr.S | 126 !! shift in the next lowest byte 135 !! shift in the next lowest byte
|