OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pRef
(Results
1 - 7
of
7
) sorted by null
/dalvik/vm/
ReferenceTable.h
54
bool dvmInitReferenceTable(ReferenceTable*
pRef
, int initialCount,
59
* Does not free "
pRef
".
63
void dvmClearReferenceTable(ReferenceTable*
pRef
);
68
INLINE size_t dvmReferenceTableEntries(const ReferenceTable*
pRef
)
70
return
pRef
->nextEntry -
pRef
->table;
77
INLINE size_t dvmIsReferenceTableFull(const ReferenceTable*
pRef
)
79
return dvmReferenceTableEntries(
pRef
) == (size_t)
pRef
->allocEntries;
89
bool dvmAddToReferenceTable(ReferenceTable*
pRef
, Object* obj)
[
all
...]
ReferenceTable.cpp
25
bool dvmInitReferenceTable(ReferenceTable*
pRef
, int initialCount,
31
pRef
->table = (Object**) malloc(initialCount * sizeof(Object*));
32
if (
pRef
->table == NULL)
35
memset(
pRef
->table, 0xdd, initialCount * sizeof(Object*));
37
pRef
->nextEntry =
pRef
->table;
38
pRef
->allocEntries = initialCount;
39
pRef
->maxEntries = maxCount;
47
void dvmClearReferenceTable(ReferenceTable*
pRef
)
49
free(
pRef
->table)
[
all
...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
avcenc_lib.h
459
void eChromaDiagonalMC_SIMD(uint8 *
pRef
, int srcPitch, int dx, int dy,
462
void eChromaHorizontalMC_SIMD(uint8 *
pRef
, int srcPitch, int dx, int dy,
465
void eChromaVerticalMC_SIMD(uint8 *
pRef
, int srcPitch, int dx, int dy,
468
void eChromaFullMC_SIMD(uint8 *
pRef
, int srcPitch, int dx, int dy,
471
void eChromaVerticalMC2_SIMD(uint8 *
pRef
, int srcPitch, int dx, int dy,
474
void eChromaHorizontalMC2_SIMD(uint8 *
pRef
, int srcPitch, int dx, int dy,
477
void eChromaDiagonalMC2_SIMD(uint8 *
pRef
, int srcPitch, int dx, int dy,
[
all
...]
motion_comp.cpp
[
all
...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.h
83
u8 *
pRef
,
94
u8 *
pRef
,
h264bsd_reconstruct.c
91
Overfilling is done only if needed. Reference image (
pRef
) is
95
pRef
pointer to reference frame Cb top-left corner
109
u8 *
pRef
,
133
ASSERT(
pRef
);
138
h264bsdFillBlock(
pRef
, block, x0, y0, width, height,
140
pRef
+= width * height;
141
h264bsdFillBlock(
pRef
, block + (chromaPartWidth+1)*chromaPartHeight,
145
pRef
= block;
157
ptrA =
pRef
+ (comp * height + (u32)y0) * width + x0;
198
Overfilling is done only if needed. Reference image (
pRef
) i
[
all
...]
/libcore/crypto/src/main/native/
org_conscrypt_NativeCrypto.cpp
[
all
...]
Completed in 44 milliseconds