Searched refs:alloced (Results 1 – 8 of 8) sorted by relevance
/external/boringssl/src/crypto/err/ |
D | err.c | 667 size_t alloced, new_len, len = 0, substr_len; in err_add_error_vdata() local 672 alloced = 80; in err_add_error_vdata() 673 buf = OPENSSL_malloc(alloced + 1); in err_add_error_vdata() 686 if (new_len > alloced) { in err_add_error_vdata() 689 if (alloced + 20 + 1 < alloced) { in err_add_error_vdata() 695 alloced = new_len + 20; in err_add_error_vdata() 696 new_buf = OPENSSL_realloc(buf, alloced + 1); in err_add_error_vdata()
|
/external/u-boot/tools/ |
D | proftool.c | 111 int alloced; in read_system_map() local 113 for (linenum = 1, alloced = func_count = 0;; linenum++) { in read_system_map() 133 if (func_count == alloced) { in read_system_map() 134 alloced += 256; in read_system_map() 136 sizeof(struct func_info) * alloced); in read_system_map()
|
/external/u-boot/drivers/pci/ |
D | pci_rom.c | 239 bool emulate, alloced; in dm_pci_run_vga_bios() local 256 ret = pci_rom_load(rom, &ram, &alloced); in dm_pci_run_vga_bios() 320 if (alloced) in dm_pci_run_vga_bios()
|
/external/python/cpython3/Objects/ |
D | listobject.c | 1134 Py_ssize_t alloced; member 1486 ms->alloced = (list_size + 1) / 2; in merge_init() 1491 if (MERGESTATE_TEMP_SIZE / 2 < ms->alloced) in merge_init() 1492 ms->alloced = MERGESTATE_TEMP_SIZE / 2; in merge_init() 1493 ms->a.values = &ms->temparray[ms->alloced]; in merge_init() 1496 ms->alloced = MERGESTATE_TEMP_SIZE; in merge_init() 1525 if (need <= ms->alloced) in merge_getmem() 1541 ms->alloced = need; in merge_getmem() 1549 #define MERGE_GETMEM(MS, NEED) ((NEED) <= (MS)->alloced ? 0 : \
|
/external/u-boot/doc/ |
D | README.arm-caches | 43 - A suitable buffer can be alloced on the stack using the
|
/external/python/cpython2/Objects/ |
D | listobject.c | 1378 Py_ssize_t alloced; member 1403 ms->alloced = MERGESTATE_TEMP_SIZE; in merge_init() 1419 ms->alloced = MERGESTATE_TEMP_SIZE; in merge_freemem() 1429 if (need <= ms->alloced) in merge_getmem() 1441 ms->alloced = need; in merge_getmem() 1448 #define MERGE_GETMEM(MS, NEED) ((NEED) <= (MS)->alloced ? 0 : \
|
/external/boringssl/src/ssl/ |
D | ssl_x509.cc | 1177 int alloced = 0; in add_client_CA() local 1180 alloced = 1; in add_client_CA() 1188 if (alloced) { in add_client_CA()
|
/external/libevent/ |
D | ChangeLog-2.0 | 969 o Delete stack-alloced event in new unit test before returning. (7ffd387)
|