/illumos-gate/usr/src/boot/sys/sys/ |
H A D | _null.h | 29 #ifndef NULL 32 #define NULL ((void *)0) macro 35 #define NULL nullptr macro 37 #define NULL __null macro 40 #define NULL (0L) macro 42 #define NULL 0 macro
|
/illumos-gate/usr/src/lib/libbc/inc/include/ |
H A D | string.h | 37 #ifndef NULL 38 #define NULL 0 macro
|
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | index.c | 27 * NULL if not found 30 #define NULL 0 macro 41 return (NULL);
|
H A D | strchr.c | 30 * NULL if not found 33 #define NULL 0 macro 43 return(NULL);
|
H A D | rindex.c | 27 * appears; NULL if not found 30 #define NULL 0 macro 38 r = NULL;
|
H A D | strpbrk.c | 30 * in the character string `string'; NULL if none exists. 33 #define NULL (char *) 0 macro 48 return(NULL);
|
H A D | strrchr.c | 30 * appears; NULL if not found 33 #define NULL 0 macro 41 r = NULL;
|
H A D | getenv.c | 30 * returns ptr to value associated with name, if any, else NULL 32 #define NULL 0 macro 42 if(p == NULL) 43 return(NULL); 44 while(*p != NULL) 45 if((v = nvmatch(name, *p++)) != NULL) 47 return(NULL); 53 * if names match, return value of s2, else NULL 66 return(NULL);
|
H A D | strtok.c | 30 * sequentially subsequent calls. returns NULL when no 32 * `subsequent' calls are calls with first argument NULL. 35 #define NULL (char*)0 macro 48 p = (string == NULL)? savept: string; 51 return(NULL); 56 return(NULL); 58 if((r = strpbrk(q, sepset)) == NULL) /* move past token */
|
H A D | ftw.c | 101 #define NULL 0 macro 161 if(dirp == NULL) 172 if(subpath == NULL) { 189 while((dp = readdir(dirp)) != NULL) { 223 if(dirp == NULL) {
|
H A D | tfind.c | 39 #define NULL 0 macro 49 if (rootp == NULL) 50 return (NULL); 51 while (*rootp != NULL) { /* T1: */ 59 return (NODE *)(NULL);
|
/illumos-gate/usr/src/common/net/wanboot/ |
H A D | auxutil.h | 15 #undef NULL macro 16 #define NULL ((void *) 0) macro
|
/illumos-gate/usr/src/stand/lib/sa/ |
H A D | string.h | 43 #ifndef NULL 44 #define NULL 0 /* defined here as per ISO C */ macro
|
H A D | stddef.h | 40 #ifndef NULL 41 #define NULL 0 macro
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | null.h | 19 #ifndef NULL 22 #define NULL 0L macro 24 #define NULL 0 macro 27 #endif /* NULL */
|
/illumos-gate/usr/src/test/libc-tests/tests/ |
H A D | aligned_alloc.c | 40 VERIFY3P(aligned_alloc(sizeof (void *) - 1, 16), ==, NULL); local 43 VERIFY3P(aligned_alloc(sizeof (void *) + 1, 16), ==, NULL); local 47 VERIFY3P(aligned_alloc(23, 16), ==, NULL); 51 VERIFY3P(buf, !=, NULL); 64 if (malloc(16) == NULL) 69 if (aligned_alloc(sizeof (void *), 16) == NULL) 73 VERIFY3P(aligned_alloc(sizeof (void *), 16), ==, NULL); local
|
/illumos-gate/usr/src/cmd/ypcmd/revnetgroup/ |
H A D | util.h | 35 #ifndef NULL 36 # define NULL ((char *) 0) macro
|
/illumos-gate/usr/src/cmd/sendmail/db/os/ |
H A D | os_fsync.c | 32 FCONTROL(_MPE_FILENO(fd), 2, NULL); /* Flush the buffers */ local 33 FCONTROL(_MPE_FILENO(fd), 6, NULL); /* Write the EOF */ local 57 ret = __db_jump.j_fsync != NULL ? __db_jump.j_fsync(fd) : fsync(fd);
|
/illumos-gate/usr/src/lib/libbc/inc/5include/ |
H A D | stdlib.h | 45 #ifndef NULL 46 #define NULL 0 macro
|
/illumos-gate/usr/src/lib/libbc/inc/include/rpc/ |
H A D | types.h | 48 #ifndef NULL 49 # define NULL 0 macro
|
/illumos-gate/usr/src/cmd/ypcmd/ |
H A D | ypv1_xdr.c | 36 #define NULL 0 macro 65 yprequest_arms[3].proc = (xdrproc_t)NULL; 70 yprequest_arms, NULL)); 88 ypresponse_arms[3].proc = (xdrproc_t)NULL; 93 ypresponse_arms, NULL));
|
/illumos-gate/usr/src/grub/grub-0.97/netboot/ |
H A D | etherboot.h | 37 #ifndef NULL 38 #define NULL ((void *)0) macro
|
/illumos-gate/usr/src/cmd/lms/SyncLib/Include/ |
H A D | Thread.h | 59 #ifndef NULL 60 #define NULL 0 macro 72 Thread(CallbackFunction func = NULL, void *param = NULL);
|
/illumos-gate/usr/src/grub/grub-0.97/lib/ |
H A D | getopt1.c | 65 #ifndef NULL macro 66 #define NULL 0
|
/illumos-gate/usr/src/cmd/sendmail/include/sm/ |
H A D | gen.h | 40 ** Define NULL and offsetof (from the C89 standard) 46 # ifndef NULL 47 # define NULL 0 macro 48 # endif /* ! NULL */
|