Lines Matching full:1024

326 	p1 = malloc(1024);  in self_test_malloc()
327 LOG("- p1 = malloc(1024)"); in self_test_malloc()
328 p2 = malloc(1024); in self_test_malloc()
329 LOG("- p2 = malloc(1024)"); in self_test_malloc()
332 r = (p1 && p2 && malloc_buffer_is_within_alloced(p1, 1024) && in self_test_malloc()
342 p3 = realloc(p1, 3 * 1024); in self_test_malloc()
345 LOG("- p3 = realloc(p1, 3*1024)"); in self_test_malloc()
348 p2 = malloc(1024); in self_test_malloc()
349 LOG("- p2 = malloc(1024)"); in self_test_malloc()
366 p3 = calloc(4, 1024); in self_test_malloc()
367 p4 = calloc(0x100, 1024 * 1024); in self_test_malloc()
368 LOG("- p3 = calloc(4, 1024)"); in self_test_malloc()
369 LOG("- p4 = calloc(0x100, 1024*1024) too big: should fail!"); in self_test_malloc()
384 p3 = memalign(0x1000, 1024); in self_test_malloc()
385 LOG("- p3 = memalign(%d, 1024)", 0x1000); in self_test_malloc()
386 p1 = malloc(1024); in self_test_malloc()
387 LOG("- p1 = malloc(1024)"); in self_test_malloc()
407 p3 = memalign(100, 1024); in self_test_malloc()
408 LOG("- p3 = memalign(%d, 1024)", 100); in self_test_malloc()
409 p4 = memalign(0, 1024); in self_test_malloc()
410 LOG("- p4 = memalign(%d, 1024)", 0); in self_test_malloc()
446 p1 = nex_malloc(1024); in self_test_nex_malloc()
447 LOG("- p1 = nex_malloc(1024)"); in self_test_nex_malloc()
448 p2 = nex_malloc(1024); in self_test_nex_malloc()
449 LOG("- p2 = nex_malloc(1024)"); in self_test_nex_malloc()
452 r = (p1 && p2 && nex_malloc_buffer_is_within_alloced(p1, 1024) && in self_test_nex_malloc()
462 p3 = nex_realloc(p1, 3 * 1024); in self_test_nex_malloc()
465 LOG("- p3 = nex_realloc(p1, 3*1024)"); in self_test_nex_malloc()
468 p2 = nex_malloc(1024); in self_test_nex_malloc()
469 LOG("- p2 = nex_malloc(1024)"); in self_test_nex_malloc()
486 p3 = nex_calloc(4, 1024); in self_test_nex_malloc()
487 p4 = nex_calloc(0x100, 1024 * 1024); in self_test_nex_malloc()
488 LOG("- p3 = nex_calloc(4, 1024)"); in self_test_nex_malloc()
489 LOG("- p4 = nex_calloc(0x100, 1024*1024) too big: should fail!"); in self_test_nex_malloc()
504 p3 = nex_memalign(0x1000, 1024); in self_test_nex_malloc()
505 LOG("- p3 = nex_memalign(%d, 1024)", 0x1000); in self_test_nex_malloc()
506 p1 = nex_malloc(1024); in self_test_nex_malloc()
507 LOG("- p1 = nex_malloc(1024)"); in self_test_nex_malloc()
527 p3 = nex_memalign(100, 1024); in self_test_nex_malloc()
528 LOG("- p3 = nex_memalign(%d, 1024)", 100); in self_test_nex_malloc()
529 p4 = nex_memalign(0, 1024); in self_test_nex_malloc()
530 LOG("- p4 = nex_memalign(%d, 1024)", 0); in self_test_nex_malloc()