| /third_party/ulib/jemalloc/test/src/ |
| A D | SFMT.c | 169 oh = th >> (shift * 8); in rshift128() 170 ol = tl >> (shift * 8); in rshift128() 171 ol |= th << (64 - shift * 8); in rshift128() 184 oh = th >> (shift * 8); in rshift128() 185 ol = tl >> (shift * 8); in rshift128() 186 ol |= th << (64 - shift * 8); in rshift128() 208 oh = th << (shift * 8); in lshift128() 209 ol = tl << (shift * 8); in lshift128() 210 oh |= tl >> (64 - shift * 8); in lshift128() 223 oh = th << (shift * 8); in lshift128() [all …]
|
| /third_party/ulib/ngunwind/include/ngunwind/private/ |
| A D | dwarf_i.h | 320 unw_word_t val = 0, shift = 0; in dwarf_read_uleb128() local 329 val |= ((unw_word_t) byte & 0x7f) << shift; in dwarf_read_uleb128() 330 shift += 7; in dwarf_read_uleb128() 345 unw_word_t val = 0, shift = 0; in dwarf_read_sleb128() local 354 val |= ((unw_word_t) byte & 0x7f) << shift; in dwarf_read_sleb128() 355 shift += 7; in dwarf_read_sleb128() 359 if (shift < 8 * sizeof (unw_word_t) && (byte & 0x40) != 0) in dwarf_read_sleb128() 361 val |= ((unw_word_t) -1) << shift; in dwarf_read_sleb128()
|
| /third_party/ulib/musl/src/string/ |
| A D | strstr.c | 37 size_t shift[256]; in twoway_strstr() local 42 , shift[n[l]] = l + 1; in twoway_strstr() 122 k = l - shift[h[l - 1]]; in twoway_strstr()
|
| A D | memmem.c | 41 size_t shift[256]; in twoway_memmem() local 46 , shift[n[i]] = i + 1; in twoway_memmem() 112 k = l - shift[h[l - 1]]; in twoway_memmem()
|
| /third_party/ulib/jemalloc/include/jemalloc/internal/ |
| A D | jemalloc_internal.h | 561 pszind_t shift = (x < LG_SIZE_CLASS_GROUP + LG_PAGE) ? 0 : x - in psz2ind() local 563 pszind_t grp = shift << LG_SIZE_CLASS_GROUP; in psz2ind() 590 size_t shift = (grp == 0) ? 1 : grp; in pind2sz_compute() local 591 size_t lg_delta = shift + (LG_PAGE-1); in pind2sz_compute() 644 szind_t shift = (x < LG_SIZE_CLASS_GROUP + LG_QUANTUM) ? 0 : in size2index_compute() local 646 szind_t grp = shift << LG_SIZE_CLASS_GROUP; in size2index_compute() 697 size_t shift = (grp == 0) ? 1 : grp; in index2size_compute() local 698 size_t lg_delta = shift + (LG_QUANTUM-1); in index2size_compute()
|
| A D | jemalloc_internal.h.in | 559 pszind_t shift = (x < LG_SIZE_CLASS_GROUP + LG_PAGE) ? 0 : x - local 561 pszind_t grp = shift << LG_SIZE_CLASS_GROUP; 588 size_t shift = (grp == 0) ? 1 : grp; local 589 size_t lg_delta = shift + (LG_PAGE-1); 642 szind_t shift = (x < LG_SIZE_CLASS_GROUP + LG_QUANTUM) ? 0 : local 644 szind_t grp = shift << LG_SIZE_CLASS_GROUP; 695 size_t shift = (grp == 0) ? 1 : grp; local 696 size_t lg_delta = shift + (LG_QUANTUM-1);
|
| /third_party/uapp/dash/src/funcs/ |
| A D | dirs | 48 shift 1 63 shift
|
| A D | popd | 48 shift 1 63 shift
|
| A D | pushd | 48 shift 1 63 shift
|
| /third_party/ulib/musl/include/sys/ |
| A D | timex.h | 25 int shift; member
|
| /third_party/uapp/dash/src/ |
| A D | builtins.def | 27 shiftcmd -s shift
|
| A D | builtins.def.in | 77 shiftcmd -s shift
|
| /third_party/ulib/ngunwind/src/arm/ |
| A D | Gex_tables.c | 227 uint8_t byte, shift = 0; in arm_exidx_decode() local 231 offset |= (byte & 0x7f) << shift; in arm_exidx_decode() 232 shift += 7; in arm_exidx_decode()
|
| /third_party/ulib/backtrace/ |
| A D | dwarf.c | 637 unsigned int shift; in read_uleb128() local 642 shift = 0; in read_uleb128() 652 if (shift < 64) in read_uleb128() 653 ret |= ((uint64_t) (b & 0x7f)) << shift; in read_uleb128() 659 shift += 7; in read_uleb128() 672 unsigned int shift; in read_sleb128() local 677 shift = 0; in read_sleb128() 687 if (shift < 64) in read_sleb128() 694 shift += 7; in read_sleb128() 698 if ((b & 0x40) != 0 && shift < 64) in read_sleb128() [all …]
|
| /third_party/ulib/musl/include/arpa/ |
| A D | nameser.h | 48 int mask, shift; member 58 (((handle)._flags & _ns_flagdata[flag].mask) >> _ns_flagdata[flag].shift)
|
| /third_party/ulib/musl/ldso/ |
| A D | dynlink.c | 660 unsigned int shift = sizeof(uintptr_t) * 8; in format_build_id_log() local 662 shift -= 4; in format_build_id_log() 663 *p++ = HEXDIGITS[(base >> shift) & 0xf]; in format_build_id_log() 664 } while (shift > 0); in format_build_id_log() 706 int shift = 60; in format_hex_value() local 707 while ((value >> shift) == 0) { in format_hex_value() 708 shift -= 4; in format_hex_value() 711 *p++ = HEXDIGITS[(value >> shift) & 0xf]; in format_hex_value() 712 shift -= 4; in format_hex_value() 713 } while (shift >= 0); in format_hex_value()
|
| /third_party/uapp/kilo/ |
| A D | kilo.c | 794 int shift = (E.screencols-E.cx)+1; local 795 E.cx -= shift; 796 E.coloff += shift;
|
| /third_party/dev/ethernet/e1000/ |
| A D | e1000_ich8lan.c | 4855 u16 data, i, temp, shift; in e1000_id_led_init_pchlan() local 4870 shift = (i * 5); in e1000_id_led_init_pchlan() 4875 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift); in e1000_id_led_init_pchlan() 4876 mac->ledctl_mode1 |= (ledctl_on << shift); in e1000_id_led_init_pchlan() 4881 mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift); in e1000_id_led_init_pchlan() 4882 mac->ledctl_mode1 |= (ledctl_off << shift); in e1000_id_led_init_pchlan() 4892 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift); in e1000_id_led_init_pchlan() 4893 mac->ledctl_mode2 |= (ledctl_on << shift); in e1000_id_led_init_pchlan() 4898 mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift); in e1000_id_led_init_pchlan() 4899 mac->ledctl_mode2 |= (ledctl_off << shift); in e1000_id_led_init_pchlan()
|
| A D | if_em.c | 2654 u32 rss_key[10], mrqc, shift = 0; in igb_initialize_rss_mapping() local 2658 shift = 6; in igb_initialize_rss_mapping() 2696 queue_id = queue_id << shift; in igb_initialize_rss_mapping()
|
| /third_party/ulib/jemalloc/ |
| A D | ChangeLog | 127 - Fix the linear scan version of bitmap_sfu() to shift by the proper amount 735 - Remove the --enable-dynamic-page-shift configure option.
|
| /third_party/lib/acpica/ |
| A D | changes.txt | 7304 reimplemented the macro so that a 64-bit shift is not performed by 8469 Fixed three instances of the use of the C shift operator in the bitfield 8470 support code (exfldio.c) to avoid the use of a shift value larger than 8580 compilers when the shift value is larger than the datatype width is
|