OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:get_mask
(Results
1 - 2
of
2
) sorted by null
/frameworks/compile/mclinker/lib/Target/AArch64/
AArch64RelocationHelpers.h
42
static inline uint32_t
get_mask
(uint32_t pValue) {
function in namespace:mcld
47
return (pInst & ~((
get_mask
(2) << 29) | (
get_mask
(19) << 5))) |
48
((pImm &
get_mask
(2)) << 29) | ((pImm & (
get_mask
(19) << 2)) << 3);
53
return (pInst & ~(
get_mask
(12) << 10)) | ((pImm &
get_mask
(12)) << 10);
59
return (pInst & ~
get_mask
(26)) | (pOff &
get_mask
(26));
65
return (pInst & ~(
get_mask
(19) << 5)) | ((pOff & get_mask(19)) << 5)
[
all
...]
/external/harfbuzz_ng/src/
hb-ot-map-private.hh
80
inline hb_mask_t
get_mask
(hb_tag_t feature_tag, unsigned int *shift = NULL) const {
function in struct:hb_ot_map_t
Completed in 75 milliseconds