OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ALIGNMENT_DEFAULT
(Results
1 - 6
of
6
) sorted by null
/external/aac/libSYS/include/
machine_type.h
224
* \def
ALIGNMENT_DEFAULT
228
#define
ALIGNMENT_DEFAULT
8
229
#define RAM_ALIGN __attribute__((aligned(
ALIGNMENT_DEFAULT
)))
231
#define
ALIGNMENT_DEFAULT
8
259
* \brief This macro aligns a given value depending on ::
ALIGNMENT_DEFAULT
.
261
* For example if #
ALIGNMENT_DEFAULT
equals 8, then:
266
#define ALIGN_SIZE(a) ((a)+ (((INT)
ALIGNMENT_DEFAULT
- ((INT)(a) & (
ALIGNMENT_DEFAULT
-1)) ) & (
ALIGNMENT_DEFAULT
-1)))
273
* \brief This macro aligns a given address depending on ::
ALIGNMENT_DEFAULT
[
all
...]
genericStds.h
144
* ::
ALIGNMENT_DEFAULT
indicates the aligment to be used (this is hardware specific).
179
type * Get ## name(int n) { FDK_ASSERT((n) == 0); return ((type*)FDKaalloc((num)*sizeof(type),
ALIGNMENT_DEFAULT
)); } \
181
UINT GetRequiredMem ## name(void) { return ALGN_SIZE_EXTRES((num) * sizeof(type) +
ALIGNMENT_DEFAULT
+ sizeof(void *)); }
185
type * Get ## name (int n) { FDK_ASSERT((n) < (n2)); return ((type*)FDKaalloc((n1)*sizeof(type),
ALIGNMENT_DEFAULT
)); } \
187
UINT GetRequiredMem ## name(void) { return ALGN_SIZE_EXTRES((n1) * sizeof(type) +
ALIGNMENT_DEFAULT
+ sizeof(void *)) * (n2); }
203
type * Get ## name(int n) { FDK_ASSERT((n) == 0); return ((type*)FDKaalloc_L((num)*sizeof(type),
ALIGNMENT_DEFAULT
, s)); } \
205
UINT GetRequiredMem ## name(void) { return ALGN_SIZE_EXTRES((num) * sizeof(type) +
ALIGNMENT_DEFAULT
+ sizeof(void *)); }
209
type * Get ## name (int n) { FDK_ASSERT((n) < (n2)); return ((type*)FDKaalloc_L((n1)*sizeof(type),
ALIGNMENT_DEFAULT
, s)); } \
211
UINT GetRequiredMem ## name(void) { return ALGN_SIZE_EXTRES((n1) * sizeof(type) +
ALIGNMENT_DEFAULT
+ sizeof(void *)) * (n2); }
220
type _ ## name[(n)+(
ALIGNMENT_DEFAULT
+sizeof(type)-1)];
[
all
...]
/external/aac/libFDK/include/arm/
scramble.h
101
FDK_ASSERT(!(((INT)x)&(
ALIGNMENT_DEFAULT
-1)));
/external/aac/libFDK/include/
scramble.h
144
FDK_ASSERT(!(((UINT64)x)&(
ALIGNMENT_DEFAULT
-1)));
/external/aac/libSBRdec/src/
psdec_hybrid.cpp
382
FIXP_DBL _fft[128 +
ALIGNMENT_DEFAULT
- 1];
/external/aac/libFDK/src/
FDK_hybrid.cpp
604
FIXP_DBL mfft[16+
ALIGNMENT_DEFAULT
];
Completed in 97 milliseconds