/third_party/backends/include/ |
H A D | lalloca.h | 40 Choose suitable implementation of alloca. 51 # define alloca __builtin_alloca macro 54 # include <alloca.h> 57 #pragma alloca 59 # ifndef alloca /* predefined by HP cc +Olibcalls */ 63 #define alloca sanei_alloca macro 65 void *alloca (); 67 char *alloca ();
|
/third_party/python/Modules/_ctypes/libffi_osx/include/ |
H A D | ffi_common.h | 20 # define alloca __builtin_alloca macro 23 # include <alloca.h> 26 # pragma alloca 28 # ifndef alloca /* predefined by HP cc +Olibcalls */ 29 char* alloca();
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | Optimizer.cpp | 142 auto *alloca = llvm::dyn_cast<Ice::InstAlloca>(&inst); in propagateAlloca() local 144 if(!alloca) in propagateAlloca() 149 // Look for stores of this alloca's address. in propagateAlloca() 150 Ice::Operand *address = alloca->getDest(); in propagateAlloca() 175 // The address is now only stored, never loaded, so the store can be eliminated, together with its alloca. in propagateAlloca() 213 auto *alloca = llvm::dyn_cast<Ice::InstAlloca>(&inst); in performScalarReplacementOfAggregates() local 215 if(!alloca) in performScalarReplacementOfAggregates() 220 uint32_t sizeInBytes = llvm::cast<Ice::ConstantInteger32>(alloca->getSizeInBytes())->getValue(); in performScalarReplacementOfAggregates() 221 uint32_t alignInBytes = alloca->getAlignInBytes(); in performScalarReplacementOfAggregates() 228 Ice::Operand *address = alloca in performScalarReplacementOfAggregates() 242 auto *alloca = Ice::InstAlloca::create(function, newAddress[i], bytes, alignInBytes); performScalarReplacementOfAggregates() local 654 Ice::InstAlloca *alloca = def ? llvm::dyn_cast<Ice::InstAlloca>(def) : nullptr; allocaOf() local [all...] |
/third_party/mesa3d/include/ |
H A D | c99_alloca.h | 36 # define alloca _alloca macro 40 # include <alloca.h>
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | alloca.h | 11 void *alloca(size_t); 13 #define alloca __builtin_alloca macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | alloca.h | 11 void *alloca(size_t); 13 #define alloca __builtin_alloca macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | alloca.h | 11 void *alloca(size_t); 13 #define alloca __builtin_alloca macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | alloca.h | 11 void *alloca(size_t); 13 #define alloca __builtin_alloca macro
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | alloca.h | 11 void *alloca(size_t); 13 #define alloca __builtin_alloca macro
|
/third_party/musl/include/ |
H A D | alloca.h | 11 void *alloca(size_t); 13 #define alloca __builtin_alloca macro
|
/third_party/libunwind/libunwind/tests/ |
H A D | ia64-test-dyn1.c | 114 r_epi = alloca (_U_dyn_region_info_size (5)); in main() 125 r_pro = alloca (_U_dyn_region_info_size (4)); in main() 141 r = alloca (_U_dyn_region_info_size (16)); in main() 152 r = alloca (_U_dyn_region_info_size (16)); in main() 165 r = alloca (_U_dyn_region_info_size (16)); in main()
|
/third_party/ltp/testcases/cve/ |
H A D | stack_clash.c | 42 #include <alloca.h> 64 volatile char * ptr = alloca(FRAME_SIZE - sizeof(long)); in exhaust_stack_into_sigsegv() 186 garbage = alloca(required); in preallocate_stack() 290 volatile int *a = alloca(128); in setup() 293 volatile int *b = alloca(128); in setup()
|
/third_party/vulkan-loader/loader/ |
H A D | stack_allocation.h | 34 #include <alloca.h> 40 #define loader_stack_alloc(size) alloca(size) 44 #warning "alloca not available on this platform!"
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_vla.h | 36 _type *_name = alloca((_length) * sizeof *_name) 45 _type *_name = memset(alloca((_length) * sizeof *_name), _byte, (_length) * sizeof *_name)
|
/third_party/eudev/src/shared/ |
H A D | process-util.h | 24 #include <alloca.h> 38 _r_ = alloca(strlen("/proc/") + DECIMAL_STR_MAX(pid_t) + 1 + sizeof(field)); \
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | stack_alloc.h | 43 # include <alloca.h> 108 #define ALLOC(var, size, type) var = alloca(sizeof(type)*(size))
|
/kernel/linux/linux-5.10/tools/testing/selftests/sigaltstack/ |
H A D | sas.c | 16 #include <alloca.h> 49 aa = alloca(1024); in my_usr1() 80 aa = alloca(1024); in my_usr2()
|
/kernel/linux/linux-6.6/tools/testing/selftests/sigaltstack/ |
H A D | sas.c | 16 #include <alloca.h> 55 aa = alloca(1024); in my_usr1() 86 aa = alloca(1024); in my_usr2()
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | cryptlib.c | 26 # define alloca _alloca macro 76 name = (WCHAR *)alloca(len + sizeof(WCHAR)); in OPENSSL_isservice() 142 fmtw = (WCHAR *)alloca(len_0 * sizeof(WCHAR)); in OPENSSL_showfatal()
|
/third_party/openssl/crypto/ |
H A D | cryptlib.c | 26 # define alloca _alloca macro 76 name = (WCHAR *)alloca(len + sizeof(WCHAR)); in OPENSSL_isservice() 142 fmtw = (WCHAR *)alloca(len_0 * sizeof(WCHAR)); in OPENSSL_showfatal()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
H A D | test_lpm_map.c | 227 data = alloca(keysize); in test_lpm_map() 230 value = alloca(keysize + 1); in test_lpm_map() 233 key = alloca(sizeof(*key) + keysize); in test_lpm_map() 342 key_ipv4 = alloca(key_size_ipv4); in test_lpm_ipaddr() 343 key_ipv6 = alloca(key_size_ipv6); in test_lpm_ipaddr() 432 key = alloca(key_size); in test_lpm_delete() 544 key_p = alloca(key_size); in test_lpm_get_next_key() 545 next_key_p = alloca(key_size); in test_lpm_get_next_key() 709 key_p = alloca(key_size); in lpm_test_command() 730 struct bpf_lpm_trie_key *next_key_p = alloca(key_siz in lpm_test_command() [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | test_lpm_map.c | 228 data = alloca(keysize); in test_lpm_map() 231 value = alloca(keysize + 1); in test_lpm_map() 234 key = alloca(sizeof(*key) + keysize); in test_lpm_map() 344 key_ipv4 = alloca(key_size_ipv4); in test_lpm_ipaddr() 345 key_ipv6 = alloca(key_size_ipv6); in test_lpm_ipaddr() 432 key = alloca(key_size); in test_lpm_delete() 541 key_p = alloca(key_size); in test_lpm_get_next_key() 542 next_key_p = alloca(key_size); in test_lpm_get_next_key() 699 key_p = alloca(key_size); in lpm_test_command() 720 struct bpf_lpm_trie_key *next_key_p = alloca(key_siz in lpm_test_command() [all...] |
/third_party/alsa-lib/src/ |
H A D | socket.c | 47 struct cmsghdr *cmsg = alloca(cmsg_len); in snd_send_fd() 80 struct cmsghdr *cmsg = alloca(cmsg_len); in snd_receive_fd()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/ |
H A D | tre.h | 213 /* alloca() versions. Like above, but memory is allocated with alloca() 217 tre_mem_new_impl(1, alloca(sizeof(struct tre_mem_struct))) 222 : tre_mem_alloc_impl((mem), 1, alloca(TRE_MEM_BLOCK_SIZE), 0, (size)))
|
/third_party/musl/porting/liteos_m/kernel/src/regex/ |
H A D | tre.h | 212 /* alloca() versions. Like above, but memory is allocated with alloca() 216 tre_mem_new_impl(1, alloca(sizeof(struct tre_mem_struct))) 221 : tre_mem_alloc_impl((mem), 1, alloca(TRE_MEM_BLOCK_SIZE), 0, (size)))
|