Searched defs:SIZE (Results 1 - 25 of 125) sorted by relevance

12345

/external/elfutils/libasm/
H A Dasm_addint16.c30 #define SIZE 16 macro
H A Dasm_addint32.c30 #define SIZE 32 macro
H A Dasm_addint64.c30 #define SIZE 64 macro
H A Dasm_adduint16.c30 #define SIZE 16 macro
H A Dasm_adduint32.c30 #define SIZE 32 macro
H A Dasm_adduint64.c30 #define SIZE 64 macro
H A Dasm_addint8.c41 #ifndef SIZE
42 # define SIZE 8 macro
54 FCT(SIZE) (AsmScn_t *asmscn, TYPE(SIZE) num) function
68 if (SIZE == 8)
70 else if (SIZE == 16)
73 else if (SIZE == 32)
92 #if SIZE > 8
96 TYPE(SIZE) var = num;
99 if (__libasm_ensure_section_space (asmscn, SIZE /
[all...]
H A Dasm_adduint8.c36 #ifndef SIZE
37 # define SIZE 8 macro
51 UFCT(SIZE) (AsmScn_t *asmscn, UTYPE(SIZE) num) function
53 return INTUSE(FCT(SIZE)) (asmscn, (TYPE(SIZE)) num);
/external/autotest/client/bin/result_tools/
H A Dunittest_lib.py6 SIZE = 10 variable
8 def create_file(path, size=SIZE):
12 @param size: Size of the temp file, default to SIZE.
/external/linux-kselftest/tools/testing/selftests/powerpc/mm/
H A Dprot_sao.c15 #define SIZE (64 * 1024) macro
29 p = mmap(NULL, SIZE, PROT_READ | PROT_WRITE | PROT_SAO,
34 memset(p, 0xaa, SIZE);
H A Dhugetlb_vs_thp_test.c9 #define SIZE (16 * 1024 * 1024) macro
18 p = mmap(addr, SIZE, PROT_READ | PROT_WRITE,
28 if (munmap(addr, SIZE)) {
34 p = mmap(addr, SIZE, PROT_READ | PROT_WRITE,
49 * getcwd(p, SIZE);
57 munmap(addr, SIZE);
/external/python/cpython2/Python/
H A Dfrozen.c24 #define SIZE (int)sizeof(M___hello__) macro
28 {"__hello__", M___hello__, SIZE},
30 {"__phello__", M___hello__, -SIZE},
31 {"__phello__.spam", M___hello__, SIZE},
/external/python/cpython3/Python/
H A Dfrozen.c28 #define SIZE (int)sizeof(M___hello__) macro
36 {"__hello__", M___hello__, SIZE},
38 {"__phello__", M___hello__, -SIZE},
39 {"__phello__.spam", M___hello__, SIZE},
/external/autotest/client/site_tests/security_Minijail_seccomp/src/
H A Dok.c10 #define SIZE 1024 macro
13 char buf[SIZE];
15 int n = syscall(__NR_read, fd, buf, SIZE);
H A Dfail.c10 #define SIZE 1024 macro
13 char buf[SIZE];
16 int nr = syscall(__NR_read, fd_z, buf, SIZE);
17 int nw = syscall(__NR_write, fd_n, buf, SIZE);
/external/ltp/testcases/kernel/syscalls/read/
H A Dread01.c37 #define SIZE 512 macro
40 static char buf[SIZE];
46 TEST(read(fd, buf, SIZE));
56 memset(buf, '*', SIZE);
58 SAFE_WRITE(1, fd, buf, SIZE);
/external/libmojo/ui/gfx/geometry/
H A Dsize.h17 typedef struct tagSIZE SIZE; typedef in typeref:struct:tagSIZE
39 SIZE ToSIZE() const;
/external/ltp/testcases/kernel/mem/shmt/
H A Dshmt05.c54 #define SIZE (2*SHMLBA) macro
73 if ((shmid = shmget(key[0], SIZE, IPC_CREAT | 0666)) < 0) {
91 if ((shmid1 = shmget(key[1], SIZE, IPC_CREAT | 0666)) < 0) {
97 cp1 = shmat(shmid1, cp + (SIZE / 2), 0);
H A Dshmt07.c48 #define SIZE 16*1024 macro
72 if ((shmid = shmget(key, SIZE, IPC_CREAT | 0666)) < 0) {
/external/ltp/testcases/kernel/syscalls/modify_ldt/
H A Dmodify_ldt03.c41 # define SIZE sizeof(struct user_desc) macro
43 # define SIZE 16 macro
46 static char buf[SIZE];
62 TEST(modify_ldt(0, buf, SIZE));
/external/ltp/testcases/kernel/syscalls/pipe/
H A Dpipe02.c30 #define SIZE 5 macro
33 static char rdbuf[SIZE];
34 static char wrbuf[SIZE];
40 SAFE_WRITE(1, fd[1], wrbuf, SIZE);
44 SAFE_WRITE(1, fd[1], wrbuf, SIZE);
54 memset(wrbuf, 'a', SIZE);
76 memset(rdbuf, 0, SIZE);
78 SAFE_READ(1, fd[0], rdbuf, SIZE);
80 if (memcmp(wrbuf, rdbuf, SIZE) != 0) {
/external/valgrind/none/tests/
H A Dsigstackgrowth.c29 #define SIZE (4*1024*1024) macro
48 deep = &here - SIZE;
/external/eigen/bench/
H A Dsparse_transpose.cpp6 #ifndef SIZE
7 #define SIZE 10000 macro
38 int rows = SIZE;
39 int cols = SIZE;
H A Dvdw_new.cpp10 #ifndef SIZE
11 #define SIZE 10000 macro
43 Vec interactions1(SIZE), interactions2(SIZE); // SIZE is the number of vdw interactions in our system
/external/guava/guava/src/com/google/common/cache/
H A DRemovalCause.java87 SIZE { enum constant in enum:RemovalCause

Completed in 506 milliseconds

12345