OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:block_idx
(Results
1 - 15
of
15
) sorted by null
/hardware/bsp/intel/peripheral/libupm/src/grovecircularled/
grovecircularled.cxx
58
for(uint8_t
block_idx
= 0;
block_idx
< 24;
block_idx
++) {
59
if (
block_idx
% 12 == 0) {
62
uint32_t state = (
block_idx
== position) ? BIT_HIGH : BIT_LOW;
74
for(uint8_t
block_idx
= 24;
block_idx
> 0;
block_idx
--) {
75
if (
block_idx
% 12 == 0) {
78
uint32_t state = (
block_idx
<= level) ? BIT_HIGH : BIT_LOW
[
all
...]
/hardware/bsp/intel/peripheral/libupm/src/my9221/
my9221.cxx
61
for(uint8_t
block_idx
= 12;
block_idx
> 0;
block_idx
--) {
62
uint32_t state = (
block_idx
< level) ? BIT_HIGH : BIT_LOW;
66
for(uint8_t
block_idx
= 0;
block_idx
< 12;
block_idx
++) {
67
uint32_t state = (
block_idx
< level) ? BIT_HIGH : BIT_LOW;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_reconintra.h
21
void vp9_predict_intra_block(const MACROBLOCKD *xd, int
block_idx
, int bwl_in,
vp9_entropy.h
177
PLANE_TYPE type, int
block_idx
) {
183
const MB_PREDICTION_MODE mode = get_y_mode(mi,
block_idx
);
vp9_mvref_common.c
128
int search_col, int
block_idx
) {
129
return
block_idx
>= 0 && candidate->mbmi.sb_type < BLOCK_8X8
130
? candidate->bmi[idx_n_column_to_subblock[
block_idx
][search_col == 0]]
vp9_reconintra.c
438
void vp9_predict_intra_block(const MACROBLOCKD *xd, int
block_idx
, int bwl_in,
445
const int have_top = (
block_idx
>> bwl) || xd->up_available;
446
const int have_left = (
block_idx
& wmask) || xd->left_available;
447
const int have_right = ((
block_idx
& wmask) != wmask);
/external/libvpx/libvpx/vp9/common/
vp9_scan.h
42
PLANE_TYPE type, int
block_idx
) {
48
const PREDICTION_MODE mode = get_y_mode(mi,
block_idx
);
vp9_mvref_common.h
138
int search_col, int
block_idx
) {
139
return
block_idx
>= 0 && candidate->mbmi.sb_type < BLOCK_8X8
140
? candidate->bmi[idx_n_column_to_subblock[
block_idx
][search_col == 0]]
/external/libvpx/libvpx/test/
sad_test.cc
118
virtual uint8_t *GetReference(int
block_idx
) {
122
block_idx
* kDataBlockSize);
124
return reference_data_ +
block_idx
* kDataBlockSize;
129
unsigned int ReferenceSAD(int
block_idx
) {
131
const uint8_t *const reference8 = GetReference(
block_idx
);
135
CONVERT_TO_SHORTPTR(GetReference(
block_idx
));
157
unsigned int ReferenceSADavg(int
block_idx
) {
159
const uint8_t *const reference8 = GetReference(
block_idx
);
164
CONVERT_TO_SHORTPTR(GetReference(
block_idx
));
277
unsigned int SAD(int
block_idx
) {
[
all
...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
sad_test.cc
84
virtual uint8_t* GetReference(int
block_idx
) {
85
return reference_data_ +
block_idx
* kDataBlockSize;
90
unsigned int ReferenceSAD(unsigned int max_sad, int
block_idx
= 0) {
92
const uint8_t* const reference = GetReference(
block_idx
);
137
unsigned int SAD(unsigned int max_sad, int
block_idx
= 0) {
139
const uint8_t* const reference = GetReference(
block_idx
);
/external/libvpx/libvpx/vp8/decoder/
error_concealment.c
417
static void assign_neighbor(EC_BLOCK *neighbor, MODE_INFO *mi, int
block_idx
)
421
neighbor->mv = mi->bmi[
block_idx
].mv.as_mv;
/external/opencv3/modules/objdetect/src/opencl/
objdetect_hog.cl
551
int
block_idx
= i / cblock_hist_size;
552
int idx_in_block = i -
block_idx
* cblock_hist_size;
554
int y =
block_idx
/ cnblocks_win_x;
555
int x =
block_idx
- y * cnblocks_win_x;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
error_concealment.c
418
static void assign_neighbor(EC_BLOCK *neighbor, MODE_INFO *mi, int
block_idx
)
422
neighbor->mv = mi->bmi[
block_idx
].mv.as_mv;
/external/opencv3/modules/cudaobjdetect/src/cuda/
hog.cu
515
int
block_idx
= i / cblock_hist_size;
516
int idx_in_block = i -
block_idx
* cblock_hist_size;
518
int y =
block_idx
/ cnblocks_win_x;
519
int x =
block_idx
- y * cnblocks_win_x;
[
all
...]
/external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c
210
int
block_idx
= (idy << 1) + idx;
local
215
x->bsse[(i << 2) +
block_idx
] = sse;
218
x->skip_txfm[(i << 2) +
block_idx
] = SKIP_TXFM_NONE;
222
x->skip_txfm[(i << 2) +
block_idx
] = SKIP_TXFM_AC_ONLY;
226
x->skip_txfm[(i << 2) +
block_idx
] = SKIP_TXFM_AC_DC;
[
all
...]
Completed in 7156 milliseconds