Home
last modified time | relevance | path

Searched refs:alloc (Results 1 – 25 of 35) sorted by relevance

12

/system/core/libutils/
DSharedBufferTest.cpp27 EXPECT_DEATH(android::SharedBuffer::alloc(SIZE_MAX), ""); in TEST()
28 EXPECT_DEATH(android::SharedBuffer::alloc(SIZE_MAX - sizeof(android::SharedBuffer)), ""); in TEST()
33 android::SharedBuffer::alloc(SIZE_MAX - sizeof(android::SharedBuffer) - 1); in TEST()
36 buf = android::SharedBuffer::alloc(0); in TEST()
43 android::SharedBuffer* buf = android::SharedBuffer::alloc(10); in TEST()
45 buf = android::SharedBuffer::alloc(10); in TEST()
48 buf = android::SharedBuffer::alloc(10); in TEST()
54 buf = android::SharedBuffer::alloc(10); in TEST()
DSharedBuffer.cpp30 SharedBuffer* SharedBuffer::alloc(size_t size) in alloc() function in android::SharedBuffer
59 SharedBuffer* sb = alloc(mSize); in edit()
83 SharedBuffer* sb = alloc(newSize); in editResize()
103 SharedBuffer* sb = alloc(new_size); in reset()
DString8.cpp65 SharedBuffer* buf = SharedBuffer::alloc(1); in initialize_string8()
87 SharedBuffer* buf = SharedBuffer::alloc(len+1); in allocFromUTF8()
111 SharedBuffer* buf = SharedBuffer::alloc(resultStrLen); in allocFromUTF16()
133 SharedBuffer* buf = SharedBuffer::alloc(resultStrLen); in allocFromUTF32()
160 SharedBuffer::alloc(sizeof(char))->data()); in String8()
DString16.cpp38 SharedBuffer* buf = SharedBuffer::alloc(sizeof(char16_t)); in initialize_string16()
65 SharedBuffer* buf = SharedBuffer::alloc(sizeof(char16_t)*(u16len+1)); in allocFromUTF8()
88 SharedBuffer* buf = SharedBuffer::alloc((u16len + 1) * sizeof(char16_t)); in allocFromUTF16()
114 SharedBuffer::alloc(sizeof(char16_t))->data()); in String16()
DSharedBuffer.h44 static SharedBuffer* alloc(size_t size);
DVectorImpl.cpp95 editable = SharedBuffer::alloc(sb->size()); in editArrayImpl()
346 SharedBuffer* sb = SharedBuffer::alloc(new_allocation_size); in setCapacity()
424 SharedBuffer* sb = SharedBuffer::alloc(new_alloc_size); in _grow()
491 SharedBuffer* sb = SharedBuffer::alloc(new_capacity * mItemSize); in _shrink()
/system/chre/apps/chqts/src/shared/
Ddumb_allocator_test.cc33 void *ptr = da.alloc(kAllocSize); in TEST()
42 ptrs[i] = da.alloc(kAllocSize); in TEST()
50 EXPECT_EQ(nullptr, da.alloc(kAllocSize)); in TEST()
57 void *newPtr = da.alloc(kAllocSize); in TEST()
66 uint8_t *ptr = static_cast<uint8_t*>(da.alloc(kAllocSize)); in TEST()
75 EXPECT_EQ(nullptr, da.alloc(kAllocSize + 1)); in TEST()
76 EXPECT_EQ(nullptr, da.alloc(kAllocSize * 2)); in TEST()
81 ExpectGoodAlloc(da, da.alloc(kAllocSize - 1)); in TEST()
82 ExpectGoodAlloc(da, da.alloc(1)); in TEST()
83 ExpectGoodAlloc(da, da.alloc(0)); in TEST()
Ddumb_allocator.h33 void *alloc(size_t bytes);
76 void *alloc(size_t bytes) { in alloc() function
77 return DumbAllocatorBase::alloc(bytes); in alloc()
Ddumb_allocator.cc36 void *DumbAllocatorBase::alloc(size_t bytes) { in alloc() function in nanoapp_testing::DumbAllocatorBase
/system/bt/embdrv/sbc/decoder/srce/
Ddecoder-oina.c40 uint8_t mode, uint8_t subbands, uint8_t blocks, uint8_t alloc, in OI_CODEC_SBC_DecoderConfigureRaw() argument
68 if (alloc > SBC_SNR) { in OI_CODEC_SBC_DecoderConfigureRaw()
81 context->common.frameInfo.alloc = alloc; in OI_CODEC_SBC_DecoderConfigureRaw()
Dframing-sbc.c53 printf(" alloc: %s\n", OI_CODEC_SBC_AllocText[frameInfo->alloc]); in OI_CODEC_SBC_DumpConfig()
/system/core/logd/
DLogStatistics.h497 std::string* alloc; member
501 : alloc(nullptr), name("", strlen("")) { in TagNameKey()
511 alloc = new std::string( in TagNameKey()
513 if (!alloc) return; in TagNameKey()
514 name = std::string_view(alloc->c_str(), alloc->size()); in TagNameKey()
529 alloc = new std::string(msg, len); in TagNameKey()
530 if (!alloc) return; in TagNameKey()
531 name = std::string_view(alloc->c_str(), alloc->size()); in TagNameKey()
535 : alloc(rval.alloc), name(rval.name.data(), rval.name.length()) { in TagNameKey()
536 rval.alloc = nullptr; in TagNameKey()
[all …]
/system/core/liblog/
Devent_tag_map.cpp46 const std::string* alloc; // HAS-AN member in MapString
70 MapString(const char* str, size_t len) : alloc(NULL), str(str, len) { in MapString()
73 : alloc(new std::string(str)), str(alloc->data(), alloc->length()) { in MapString()
76 : alloc(rval.alloc), str(rval.data(), rval.length()) { in MapString()
77 rval.alloc = NULL; in MapString()
80 : alloc(rval.alloc ? new std::string(*rval.alloc) : NULL), in MapString()
81 str(alloc ? alloc->data() : rval.data(), rval.length()) { in MapString()
85 if (alloc) delete alloc; in ~MapString()
/system/extras/alloc-stress/
DAndroid.bp18 name: "alloc-stress",
19 srcs: ["alloc-stress.cpp"],
/system/bt/osi/src/
Dlist.cc27 list_t* list = (list_t*)zeroed_allocator->alloc(sizeof(list_t)); in list_new_internal()
94 list_node_t* node = (list_node_t*)list->allocator->alloc(sizeof(list_node_t)); in list_insert_after()
109 list_node_t* node = (list_node_t*)list->allocator->alloc(sizeof(list_node_t)); in list_prepend()
123 list_node_t* node = (list_node_t*)list->allocator->alloc(sizeof(list_node_t)); in list_append()
/system/bt/osi/include/
Dallocator.h29 alloc_fn alloc; member
/system/extras/simpleperf/
Dutils.cpp206 ISzAlloc alloc; in XzDecompress() local
208 alloc.Alloc = xz_alloc; in XzDecompress()
209 alloc.Free = xz_free; in XzDecompress()
210 XzUnpacker_Construct(&state, &alloc); in XzDecompress()
/system/bt/embdrv/sbc/decoder/
DAndroid.bp7 "srce/alloc.c",
/system/bt/embdrv/sbc/decoder/include/
Doi_codec_sbc.h176 uint8_t alloc; /**< The bit allocation method. Input parameter. */ member
328 uint8_t mode, uint8_t subbands, uint8_t blocks, uint8_t alloc,
/system/libhidl/libhidlcache/
DMemoryDealer.cpp73 ssize_t alloc(size_t size, uint32_t flags);
138 ssize_t offset = alloc(size, flags); in allocate()
151 ssize_t SimpleBestFitAllocator::alloc(size_t size, uint32_t flags) { in alloc() function in android::hardware::SimpleBestFitAllocator
/system/bt/hci/include/
Dbt_vendor_lib.h348 malloc_cb alloc; member
/system/nfc/src/nfa/include/
Dnfa_snep_api.h166 tNFA_SNEP_ALLOC alloc; /* NFA_SNEP_ALLOC_BUFF_EVT */ member
/system/core/libunwindstack/
DElfInterface.cpp88 ISzAlloc alloc; in CreateGnuDebugdataMemory() local
90 alloc.Alloc = [](void*, size_t size) { return malloc(size); }; in CreateGnuDebugdataMemory()
91 alloc.Free = [](void*, void* ptr) { return free(ptr); }; in CreateGnuDebugdataMemory()
93 XzUnpacker_Construct(&state, &alloc); in CreateGnuDebugdataMemory()
/system/bt/stack/avrc/
Davrc_bld_ct.cc563 bool alloc = false; in AVRC_BldCommand() local
579 alloc = true; in AVRC_BldCommand()
656 if (alloc && (status != AVRC_STS_NO_ERROR)) { in AVRC_BldCommand()
/system/bt/embdrv/sbc/
DBUILD.gn19 "decoder/srce/alloc.c",

12