HomeSort by relevance Sort by last modified time
    Searched refs:requiredAlignment (Results 1 - 8 of 8) sorted by null

  /frameworks/rs/
rs_compat.spec 7 param size_t requiredAlignment
rsAllocation.cpp 64 size_t requiredAlignment) {
86 success = rsc->mHal.funcs.allocation.initStrided(rsc, a, type->getElement()->getHasReferences(), requiredAlignment);
793 size_t requiredAlignment) {
795 (void*)ptr, requiredAlignment);
    [all...]
rs_hal.h 309 bool (*initStrided)(const Context *rsc, Allocation *alloc, bool forceZero, size_t requiredAlignment);
  /external/clang/lib/AST/
RecordLayout.cpp 33 CharUnits requiredAlignment,
38 RequiredAlignment(requiredAlignment), FieldOffsets(nullptr),
49 CharUnits requiredAlignment,
66 RequiredAlignment(requiredAlignment), FieldOffsets(nullptr),
  /external/clang/include/clang/AST/
RecordLayout.h 69 /// RequiredAlignment - The required alignment of the object. In the MS-ABI
71 CharUnits RequiredAlignment;
139 CharUnits requiredAlignment,
147 CharUnits requiredAlignment,
283 return RequiredAlignment;
  /frameworks/rs/driver/
rsdAllocation.cpp 306 const Type *type, uint8_t *ptr, size_t requiredAlignment) {
311 // Stride needs to be aligned to a boundary defined by requiredAlignment!
313 alloc->mHal.drvState.lod[0].stride = rsRound(stride, requiredAlignment);
337 rsRound(tx * type->getElementSizeBytes(), requiredAlignment);
366 static uint8_t* allocAlignedMemory(size_t allocSize, bool forceZero, size_t requiredAlignment) {
367 // We align all allocations to a boundary defined by requiredAlignment.
368 uint8_t* ptr = (uint8_t *)memalign(requiredAlignment, allocSize);
378 bool rsdAllocationInitStrided(const Context *rsc, Allocation *alloc, bool forceZero, size_t requiredAlignment) {
385 // Check if requiredAlignment is power of 2, also requiredAlignment should be larger or equal than kMinimumRSAlignment
    [all...]
rsdAllocation.h 90 bool forceZero, size_t requiredAlignment);
  /frameworks/support/v8/renderscript/jni/
android_renderscript_RenderScript.cpp     [all...]

Completed in 3448 milliseconds