Home
last modified time | relevance | path

Searched refs:shift (Results 1 – 21 of 21) sorted by relevance

/third_party/ulib/jemalloc/test/src/
A DSFMT.c169 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 Ddwarf_i.h320 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 Dstrstr.c37 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 Dmemmem.c41 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 Djemalloc_internal.h561 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 Djemalloc_internal.h.in559 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 Ddirs48 shift 1
63 shift
A Dpopd48 shift 1
63 shift
A Dpushd48 shift 1
63 shift
/third_party/ulib/musl/include/sys/
A Dtimex.h25 int shift; member
/third_party/uapp/dash/src/
A Dbuiltins.def27 shiftcmd -s shift
A Dbuiltins.def.in77 shiftcmd -s shift
/third_party/ulib/ngunwind/src/arm/
A DGex_tables.c227 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 Ddwarf.c637 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 Dnameser.h48 int mask, shift; member
58 (((handle)._flags & _ns_flagdata[flag].mask) >> _ns_flagdata[flag].shift)
/third_party/ulib/musl/ldso/
A Ddynlink.c660 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 Dkilo.c794 int shift = (E.screencols-E.cx)+1; local
795 E.cx -= shift;
796 E.coloff += shift;
/third_party/dev/ethernet/e1000/
A De1000_ich8lan.c4855 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 Dif_em.c2654 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 DChangeLog127 - 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 Dchanges.txt7304 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

Completed in 638 milliseconds