OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:component_shift
(Results
1 - 3
of
3
) sorted by null
/frameworks/rs/cpu_ref/
rsCpuIntrinsics_neon_Resize.S
145
.set
COMPONENT_SHIFT
, 0
147
.set
COMPONENT_SHIFT
, 1
149
.set
COMPONENT_SHIFT
, 2
153
.set COMPONENT_COUNT, (1 <<
COMPONENT_SHIFT
)
186
bfc r12, #0, #CHUNKSHIFT + 1 +
COMPONENT_SHIFT
+ 1
238
sub r8, r12, r10, LSL #
COMPONENT_SHIFT
+ 1
274
sub r4, r4, r10, LSL #
COMPONENT_SHIFT
275
sub r5, r5, r10, LSL #
COMPONENT_SHIFT
276
sub r6, r6, r10, LSL #
COMPONENT_SHIFT
277
sub r7, r7, r10, LSL #
COMPONENT_SHIFT
[
all
...]
rsCpuIntrinsics_advsimd_Resize.S
128
.set
COMPONENT_SHIFT
, 0
130
.set
COMPONENT_SHIFT
, 1
132
.set
COMPONENT_SHIFT
, 2
136
.set COMPONENT_COUNT, (1 <<
COMPONENT_SHIFT
)
165
bic x12, x12, #(1 << (CHUNKSHIFT + 1 +
COMPONENT_SHIFT
+ 1)) - 1
208
sub x14, x12, x13, LSL #(
COMPONENT_SHIFT
+ 1)
241
sub x4, x4, x13, LSL #(
COMPONENT_SHIFT
)
242
sub x5, x5, x13, LSL #(
COMPONENT_SHIFT
)
243
sub x6, x6, x13, LSL #(
COMPONENT_SHIFT
)
244
sub x7, x7, x13, LSL #(
COMPONENT_SHIFT
)
[
all
...]
/art/runtime/mirror/
array.cc
138
const auto
component_shift
= GetClass()->GetComponentSizeShift();
local
139
Array* new_array = Alloc<true>(self, GetClass(), new_length,
component_shift
, allocator_type);
142
std::min(h_this->GetLength(), new_length) <<
component_shift
);
Completed in 67 milliseconds