HomeSort by relevance Sort by last modified time
    Searched defs:SIZE (Results 1 - 25 of 530) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libasm/
asm_addint16.c 30 #define SIZE 16
asm_addint32.c 30 #define SIZE 32
asm_addint64.c 30 #define SIZE 64
asm_adduint16.c 30 #define SIZE 16
asm_adduint32.c 30 #define SIZE 32
asm_adduint64.c 30 #define SIZE 64
asm_addint8.c 41 #ifndef SIZE
42 # define SIZE 8
45 #define FCT(size) _FCT(size)
46 #define _FCT(size) asm_addint##size
47 #define TYPE(size) _TYPE(size)
48 #define _TYPE(size) int##size##_
    [all...]
asm_adduint8.c 36 #ifndef SIZE
37 # define SIZE 8
40 #define UFCT(size) _UFCT(size)
41 #define _UFCT(size) asm_adduint##size
42 #define FCT(size) _FCT(size)
43 #define _FCT(size) asm_addint##size
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
frozen.c 24 #define SIZE (int)sizeof(M___hello__)
28 {"__hello__", M___hello__, SIZE},
29 /* Test package (negative size indicates package-ness) */
30 {"__phello__", M___hello__, -SIZE},
31 {"__phello__.spam", M___hello__, SIZE},
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
frozen.c 24 #define SIZE (int)sizeof(M___hello__)
28 {"__hello__", M___hello__, SIZE},
29 /* Test package (negative size indicates package-ness) */
30 {"__phello__", M___hello__, -SIZE},
31 {"__phello__.spam", M___hello__, SIZE},
  /external/linux-kselftest/tools/testing/selftests/powerpc/mm/
prot_sao.c 15 #define SIZE (64 * 1024)
29 p = mmap(NULL, SIZE, PROT_READ | PROT_WRITE | PROT_SAO,
34 memset(p, 0xaa, SIZE);
hugetlb_vs_thp_test.c 7 /* This must match the huge page & THP size */
8 #define SIZE (16 * 1024 * 1024)
17 p = mmap(addr, SIZE, PROT_READ | PROT_WRITE,
27 if (munmap(addr, SIZE)) {
33 p = mmap(addr, SIZE, PROT_READ | PROT_WRITE,
48 * getcwd(p, SIZE);
56 munmap(addr, SIZE);
  /art/test/103-string-append/src/
Main.java 19 public static final int SIZE = 8 * 1024;
25 for (int i = 0; i < SIZE; i++) {
  /external/autotest/client/site_tests/security_Minijail_seccomp/src/
ok.c 10 #define SIZE 1024
13 char buf[SIZE];
15 int n = syscall(__NR_read, fd, buf, SIZE);
fail.c 10 #define SIZE 1024
13 char buf[SIZE];
16 int nr = syscall(__NR_read, fd_z, buf, SIZE);
17 int nw = syscall(__NR_write, fd_n, buf, SIZE);
  /frameworks/base/core/java/android/provider/
OpenableColumns.java 42 public static final String SIZE = "_size";
  /external/valgrind/none/tests/
sigstackgrowth.c 29 #define SIZE (4*1024*1024)
48 deep = &here - SIZE;
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioCollections.cpp 31 for (size_t i = 0; i < size(); i++) {
45 const size_t SIZE = 256;
46 char buffer[SIZE];
48 snprintf(buffer, SIZE, "\n%*sAudio Routes (%zu):\n", spaces, "", size());
50 for (size_t i = 0; i < size(); i++) {
51 snprintf(buffer, SIZE, "%*s- Route %zu:\n", spaces, "", i + 1);
AudioRoute.cpp 29 const size_t SIZE = 256;
30 char buffer[SIZE];
33 snprintf(buffer, SIZE, "%*s- Type: %s\n", spaces, "", mType == AUDIO_ROUTE_MUX ? "Mux" : "Mix");
36 snprintf(buffer, SIZE, "%*s- Sink: %s\n", spaces, "", mSink->getTagName().string());
39 if (mSources.size() != 0) {
40 snprintf(buffer, SIZE, "%*s- Sources: \n", spaces, "");
42 for (size_t i = 0; i < mSources.size(); i++) {
43 snprintf(buffer, SIZE, "%*s%s \n", spaces + 4, "", mSources[i]->getTagName().string());
49 write(fd, result.string(), result.size());
AudioSourceDescriptor.cpp 34 const size_t SIZE = 256;
35 char buffer[SIZE];
38 snprintf(buffer, SIZE, "mStream: %d\n", audio_attributes_to_stream_type(&mAttributes));
40 snprintf(buffer, SIZE, "mDevice:\n");
42 write(fd, result.string(), result.size());
50 const size_t SIZE = 256;
51 char buffer[SIZE];
53 snprintf(buffer, SIZE, "\nAudio sources dump:\n");
55 for (size_t i = 0; i < size(); i++) {
56 snprintf(buffer, SIZE, "- Source %d dump:\n", keyAt(i))
    [all...]
  /test/vts-testcase/security/poc/target/kernel_sound/28838221/
poc.cpp 13 #define SIZE 32
25 char buf[SIZE] = {0};
35 ret = write(fd, buf, SIZE);
  /external/eigen/bench/
vdw_new.cpp 10 #ifndef SIZE
11 #define SIZE 10000
43 Vec interactions1(SIZE), interactions2(SIZE); // SIZE is the number of vdw interactions in our system
  /external/ltp/testcases/kernel/mem/shmt/
shmt05.c 54 #define SIZE (2*SHMLBA)
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);
shmt07.c 48 #define SIZE 16*1024
72 if ((shmid = shmget(key, SIZE, IPC_CREAT | 0666)) < 0) {
  /external/ltp/testcases/kernel/syscalls/modify_ldt/
modify_ldt03.c 41 # define SIZE sizeof(struct user_desc)
43 # define SIZE 16
46 static char buf[SIZE];
62 TEST(modify_ldt(0, buf, SIZE));

Completed in 276 milliseconds

1 2 3 4 5 6 7 8 91011>>