OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:aligned_address
(Results
1 - 4
of
4
) sorted by null
/external/flac/libFLAC/
memory.c
40
void *FLAC__memory_alloc_aligned(size_t bytes, void **
aligned_address
)
44
FLAC__ASSERT(0 !=
aligned_address
);
51
/* could do *
aligned_address
= x + ((unsigned) (32 - (((unsigned)x) & 31))) & 31; */
52
*
aligned_address
= (void*)(((unsigned)x + 31) & -32);
54
*
aligned_address
= (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32)));
61
*
aligned_address
= (void*)(((unsigned)x + 31) & -32);
63
*
aligned_address
= (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32)));
69
*
aligned_address
= x;
/external/flac/libFLAC/include/private/
memory.h
47
void *FLAC__memory_alloc_aligned(size_t bytes, void **
aligned_address
);
/external/chromium_org/third_party/webrtc/system_wrappers/source/
aligned_malloc_unittest.cc
43
const uintptr_t
aligned_address
= reinterpret_cast<uintptr_t> (scoped.get());
local
44
const uintptr_t misaligned_address =
aligned_address
- left_misalignment;
/external/lldb/source/Expression/
IRMemoryMap.cpp
241
lldb::addr_t
aligned_address
= LLDB_INVALID_ADDRESS;
local
314
aligned_address
= (allocation_address + mask) & (~mask);
316
m_allocations[
aligned_address
] = Allocation(allocation_address,
317
aligned_address
,
348
aligned_address
);
351
return
aligned_address
;
Completed in 71 milliseconds