OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bit_mask
(Results
1 - 16
of
16
) sorted by null
/art/libdexfile/dex/
compact_offset_table.cc
43
uint16_t
bit_mask
= *block;
local
45
bit_mask
= (
bit_mask
<< kBitsPerByte) | *block;
47
if ((
bit_mask
& (1 << bit_index)) == 0) {
53
size_t count = POPCOUNT(static_cast<uintptr_t>(
bit_mask
) << (kBitsPerIntPtrT - 1 - bit_index));
101
uint16_t
bit_mask
= 0u;
local
104
bit_mask
|= 1 << i;
108
out_data->push_back(static_cast<uint8_t>(
bit_mask
>> kBitsPerByte));
109
out_data->push_back(static_cast<uint8_t>(
bit_mask
));
/external/e2fsprogs/ext2ed/
blockbitmap_com.c
177
unsigned char
bit_mask
=1;
local
183
bit_mask
*=2; /* Generate the or mask - 1 at the right place */
184
type_data.u.buffer [byte_offset] |=
bit_mask
; /* And apply it */
192
unsigned char
bit_mask
=1;
local
197
bit_mask
*=2;
198
bit_mask
^=0xff;
200
type_data.u.buffer [byte_offset] &=
bit_mask
;
inodebitmap_com.c
137
unsigned char
bit_mask
=1;
local
142
bit_mask
*=2;
143
type_data.u.buffer [byte_offset] |=
bit_mask
;
149
unsigned char
bit_mask
=1;
local
154
bit_mask
*=2;
155
bit_mask
^=0xff;
157
type_data.u.buffer [byte_offset] &=
bit_mask
;
/external/tensorflow/tensorflow/compiler/xla/client/lib/
quantize.h
117
// Make
bit_mask
for different data type T.
118
uint32
bit_mask
= 0x00000000;
local
120
bit_mask
<<= kBitsOfByte;
121
bit_mask
|= 0x000000ff;
130
// Shift the input by sizeof(T) bytes and apply
bit_mask
to unpack.
135
And(shifted_input, xla::ConstantR0<uint32>(builder,
bit_mask
));
/external/u-boot/arch/arm/cpu/armv7/bcm235xx/
clk-core.c
57
u32
bit_mask
= 1 << bit;
local
64
bit_val = (val &
bit_mask
) ? 1 : 0;
/external/u-boot/arch/arm/cpu/armv7/bcm281xx/
clk-core.c
57
u32
bit_mask
= 1 << bit;
local
64
bit_val = (val &
bit_mask
) ? 1 : 0;
/external/v8/src/compiler/
int64-lowering.cc
727
Node*
bit_mask
=
local
763
graph()->NewNode(machine()->Word32And(), rotate_low,
bit_mask
),
768
graph()->NewNode(machine()->Word32And(), rotate_high,
bit_mask
),
[
all
...]
simd-scalar-lowering.cc
1498
const int
bit_mask
= (1 << bit_size) - 1;
local
[
all
...]
/external/libhevc/decoder/
ihevcd_process_slice.c
118
WORD32
bit_mask
= (1 << bit_pos);
local
145
status = *pu1_buf &
bit_mask
;
160
status = *pu1_buf &
bit_mask
;
169
status = *pu1_buf &
bit_mask
;
201
WORD32
bit_mask
= (1 << bit_pos);
local
214
*pu1_buf = *pu1_buf |
bit_mask
;
[
all
...]
/external/tensorflow/tensorflow/core/kernels/
lookup_table_op.cc
408
const int64
bit_mask
= num_buckets_ - 1;
local
422
int64 bucket_index = key_hash &
bit_mask
;
442
(bucket_index + num_probes) &
bit_mask
; // quadratic probing
584
const int64
bit_mask
= num_buckets_ - 1;
local
603
int64 bucket_index = key_hash &
bit_mask
;
629
(bucket_index + num_probes) &
bit_mask
; // quadratic probing
653
const int64
bit_mask
= num_buckets_ - 1;
local
666
int64 bucket_index = key_hash &
bit_mask
;
682
(bucket_index + num_probes) &
bit_mask
; // quadratic probing
[
all
...]
/external/v8/src/heap/
slot-set.h
97
uint32_t
bit_mask
= 1u << bit_index;
local
98
if (cell &
bit_mask
) {
99
ClearCellBits(&bucket[cell_index],
bit_mask
);
204
uint32_t
bit_mask
= 1u << bit_offset;
local
209
mask |=
bit_mask
;
211
cell ^=
bit_mask
;
/external/mesa3d/src/intel/compiler/
brw_fs.cpp
891
bit_mask
(unsigned n)
function in namespace:__anon34193
893
return (n >= CHAR_BIT * sizeof(
bit_mask
(n)) ? ~0u : (1u << n) - 1);
902
return
bit_mask
(end) & ~
bit_mask
(start);
[
all
...]
/device/google/bonito/sdm710/kernel-headers/linux/
msm_mdp.h
543
uint8_t
bit_mask
;
member in struct:mdp_histogram_cfg
718
uint8_t
bit_mask
;
member in struct:mdp_histogram_start_req
/device/google/bonito/sdm710/original-kernel-headers/linux/
msm_mdp.h
638
uint8_t
bit_mask
;
member in struct:mdp_histogram_cfg
934
uint8_t
bit_mask
;
member in struct:mdp_histogram_start_req
[
all
...]
/device/google/crosshatch/sdm845/kernel-headers/linux/
msm_mdp.h
543
uint8_t
bit_mask
;
member in struct:mdp_histogram_cfg
718
uint8_t
bit_mask
;
member in struct:mdp_histogram_start_req
/device/google/crosshatch/sdm845/original-kernel-headers/linux/
msm_mdp.h
638
uint8_t
bit_mask
;
member in struct:mdp_histogram_cfg
934
uint8_t
bit_mask
;
member in struct:mdp_histogram_start_req
[
all
...]
Completed in 1251 milliseconds