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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
_null.h 29 #ifndef NULL
32 #define NULL ((void *)0)
35 #define NULL nullptr
37 #define NULL __null
40 #define NULL (0L)
42 #define NULL 0
  /external/clang/test/CodeGen/
variadic-null-win64.c 4 // Make it possible to pass NULL through variadic functions on platforms where
5 // NULL has an integer type that is more narrow than a pointer. On such
6 // platforms we widen null pointer constants to a pointer-sized integer.
8 #define NULL 0
12 v(f, 1, 2, 3, NULL);
  /device/linaro/bootloader/edk2/OvmfPkg/PlatformPei/
Fv.c 91 NULL,
94 NULL,
95 NULL
  /external/boringssl/src/decrepit/evp/
evp_do_all.c 22 callback(EVP_aes_128_cbc(), "AES-128-CBC", NULL, arg);
23 callback(EVP_aes_192_cbc(), "AES-192-CBC", NULL, arg);
24 callback(EVP_aes_256_cbc(), "AES-256-CBC", NULL, arg);
25 callback(EVP_aes_128_ctr(), "AES-128-CTR", NULL, arg);
26 callback(EVP_aes_192_ctr(), "AES-192-CTR", NULL, arg);
27 callback(EVP_aes_256_ctr(), "AES-256-CTR", NULL, arg);
28 callback(EVP_aes_128_ecb(), "AES-128-ECB", NULL, arg);
29 callback(EVP_aes_192_ecb(), "AES-192-ECB", NULL, arg);
30 callback(EVP_aes_256_ecb(), "AES-256-ECB", NULL, arg);
31 callback(EVP_aes_128_ofb(), "AES-128-OFB", NULL, arg)
    [all...]
  /external/epid-sdk/ext/ipp/sources/ippcp/
pcpmont_init.c 83 gsModEngineInit(MNT_ENGINE(pMont), NULL, maxBitSize, poolLength, gsModArithMont());
  /external/fec/
init_rs.c 9 #if !defined(NULL)
10 #define NULL ((void *)0)
init_rs.h 5 #undef NULL
6 #define NULL ((void *)0)
11 rs = NULL;
27 if(rs == NULL)
35 if(rs->alpha_to == NULL){
37 rs = NULL;
41 if(rs->index_of == NULL){
44 rs = NULL;
65 rs = NULL;
71 if(rs->genpoly == NULL){
    [all...]
  /external/python/cpython2/PC/os2emx/
dllentry.c 5 #define NULL 0
  /external/strace/tests/
adjtimex.c 43 int state = adjtimex(NULL);
44 printf("adjtimex(NULL) = %s\n", sprintrc(state));
60 printflags(adjtimex_status, (unsigned int) tx->status, NULL);
89 printxval(adjtimex_state, (unsigned int) state, NULL);
  /external/strace/tests-m32/
adjtimex.c 43 int state = adjtimex(NULL);
44 printf("adjtimex(NULL) = %s\n", sprintrc(state));
60 printflags(adjtimex_status, (unsigned int) tx->status, NULL);
89 printxval(adjtimex_state, (unsigned int) state, NULL);
  /external/strace/tests-mx32/
adjtimex.c 43 int state = adjtimex(NULL);
44 printf("adjtimex(NULL) = %s\n", sprintrc(state));
60 printflags(adjtimex_status, (unsigned int) tx->status, NULL);
89 printxval(adjtimex_state, (unsigned int) state, NULL);
  /external/u-boot/include/linux/
stddef.h 4 #undef NULL
6 #define NULL 0
8 #define NULL ((void *)0)
  /external/clang/test/SemaCXX/
null_in_arithmetic_ops.cpp 14 a = 0 ? NULL + a : a + NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
15 a = 0 ? NULL - a : a - NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
16 a = 0 ? NULL / a : a / NULL; // expected-warning 2{{use of NULL in arithmetic operation}} \
18 a = 0 ? NULL * a : a * NULL; // expected-warning 2{{use of NULL in arithmetic operation}
    [all...]
  /external/iptables/libiptc/
linux_stddef.h 4 #undef NULL
6 #define NULL 0
8 #define NULL ((void *)0)
  /external/libese/libese-sysdeps/include/ese/
sysdeps.h 24 #ifndef NULL
25 #define NULL ((void *)(0))
  /external/strace/
ipc_sem.c 106 printxval(ipc_private, (unsigned int) tcp->u_arg[0], NULL);
108 if (printflags(resource_flags, tcp->u_arg[2] & ~0777, NULL) != 0)
  /external/u-boot/include/bedbug/
bedbug.h 6 #ifndef NULL
7 #define NULL 0
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformPei/
MemoryCallback.c 47 NULL
140 NULL,
143 NULL,
144 NULL
148 NULL,
151 NULL,
152 NULL
159 NULL,
162 NULL,
163 NULL
    [all...]
  /external/clang/test/Headers/
typedef_guards.c 4 // NULL is rdefined in stddef.h
5 #define NULL ((void*) 0)
25 void *baz() { return NULL; }
  /external/clang/test/PCH/
macro-undef.cpp 8 #define NULL 0
14 #undef NULL
25 // CHECK: fix-it:"{{.*}}":{11:10-11:10}:" = NULL"
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
flockfile.c 87 } else if (_LOCKOWNER(fp) == NULL) {
122 while (_LOCKOWNER(fp) != NULL)
124 thr_setcancelstate(oldstate, NULL);
151 thr_setcancelstate(_LOCKCANCELSTATE(fp), NULL);
156 _LOCKOWNER(fp) = NULL;
  /external/clang/test/Analysis/
kmalloc-linux.c 6 #define NULL ((void *)0)
20 if (list == NULL)
35 if (list == NULL)
50 if (list == NULL)
malloc-three-arg.c 6 #define NULL ((void *)0)
19 list = malloc(sizeof(*list) * 10, NULL, M_ZERO);
20 if (list == NULL)
34 list = malloc(sizeof(*list) * 10, NULL, 0);
35 if (list == NULL)
49 list = malloc(sizeof(*list) * 10, NULL, flags);
50 if (list == NULL)
  /external/clang/test/Index/
complete-exprs.c 17 #define NULL __null
19 f3(str, NULL);
57 // CHECK-CC6: FunctionDecl:{ResultType void}{TypedText f3}{LeftParen (}{Placeholder const char *, ...}{Text , NULL}{RightParen )} (50)
66 // CHECK-CC7: FunctionDecl:{ResultType void}{TypedText f3}{LeftParen (}{Placeholder const char *, ...}{Text , NULL}{RightParen )} (50)
  /external/clang/test/Sema/
attr-sentinel.c 3 #define NULL (void*)0
17 foo1(1, NULL); // OK
19 foo5(1, NULL, 2); // OK
20 foo5(1,2,NULL, 1); // OK
21 foo5(1, NULL, 2, 1); // expected-warning {{missing sentinel in function call}}
24 foo6(1,NULL,3,4,5,6,7); // OK
26 foo7(1, NULL); // OK

Completed in 1200 milliseconds

1 2 3 4 5 6 7 8 91011>>