Searched defs:shift (Results 1 - 11 of 11) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_rintl.c43 shift[2] = { variable
79 x += shift[sign];
80 x -= shift[sign];
/bionic/linker/
H A Dlinker_sleb128.h34 size_t shift = 0; local
42 value |= (static_cast<size_t>(byte & 127) << shift);
43 shift += 7;
46 if (shift < size && (byte & 64)) {
47 value |= -(static_cast<size_t>(1) << shift);
/bionic/libc/kernel/uapi/linux/tc_act/
H A Dtc_pedit.h41 __u32 shift; member in struct:tc_pedit_key
/bionic/tools/relocation_packer/src/
H A Dsleb128.cc100 size_t shift = 0; local
106 value |= (static_cast<uint_t>(byte & 127) << shift);
107 shift += 7;
111 // Sign extend if value is -ve and we did not shift all of it.
112 if (shift < size && (byte & 64))
113 value |= -(static_cast<uint_t>(1) << shift);
/bionic/libc/kernel/uapi/drm/
H A Dmsm_drm.h84 __s32 shift; member in struct:drm_msm_gem_submit_reloc
H A Dtegra_drm.h102 __u32 shift; member in struct:drm_tegra_reloc
/bionic/libc/kernel/uapi/linux/tc_ematch/
H A Dtc_em_meta.h36 __u8 shift; member in struct:tcf_meta_val
/bionic/libc/kernel/uapi/linux/
H A Dtimex.h41 int shift; member in struct:timex
/bionic/libc/bionic/
H A Dlibc_logging.cpp380 int shift = 64 - 8*bytelen; local
381 value = static_cast<uint64_t>((static_cast<int64_t>(value << shift)) >> shift);
/bionic/libc/kernel/uapi/sound/
H A Dasoc.h135 __le32 shift; member in struct:snd_soc_tplg_channel
252 __le32 shift; member in struct:snd_soc_tplg_dapm_widget
/bionic/libc/include/arpa/
H A Dnameser.h145 struct _ns_flagdata { int mask, shift; }; member in struct:_ns_flagdata

Completed in 1523 milliseconds