Searched refs:ptr (Results 1 - 25 of 2650) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Dstring2.C10 void const *ptr = 0; local
12 ptr = ary;
13 if (ptr == "wibble")
15 if (ptr != ary)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A Dstring2.C10 void const *ptr = 0; local
12 ptr = ary;
13 if (ptr == "wibble")
15 if (ptr != ary)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20021219-1.c10 char *ptr = str + 5; local
12 foo(ptr, &ptr);
14 while (*ptr && (*ptr == 13 || *ptr == 32))
15 ptr++;
H A Dstring-opt-18.c19 void test1 (void *ptr) argument
21 if (memcpy(ptr,ptr,8) != ptr)
25 void test2 (char *ptr) argument
27 if (mempcpy(ptr,ptr,8) != ptr+8)
31 void test3 (void *ptr) argument
33 if (memmove(ptr,pt
37 test4(char *ptr) argument
43 test5(void *ptr) argument
49 test6(const char *ptr) argument
55 test7(const char *ptr) argument
[all...]
H A D990222-1.c5 char *ptr = line + 3; local
7 while ((*--ptr += 1) > '9') *ptr = '0';
H A D20021113-1.c11 int *ptr = alloca (sizeof (int)); local
12 *ptr = 5;
13 foo (ptr);
14 if (*ptr == 5)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20021219-1.c10 char *ptr = str + 5; local
12 foo(ptr, &ptr);
14 while (*ptr && (*ptr == 13 || *ptr == 32))
15 ptr++;
H A Dstring-opt-18.c19 void test1 (void *ptr) argument
21 if (memcpy(ptr,ptr,8) != ptr)
25 void test2 (char *ptr) argument
27 if (mempcpy(ptr,ptr,8) != ptr+8)
31 void test3 (void *ptr) argument
33 if (memmove(ptr,pt
37 test4(char *ptr) argument
43 test5(void *ptr) argument
49 test6(const char *ptr) argument
55 test7(const char *ptr) argument
[all...]
H A D990222-1.c5 char *ptr = line + 3; local
7 while ((*--ptr += 1) > '9') *ptr = '0';
H A D20021113-1.c11 int *ptr = alloca (sizeof (int)); local
12 *ptr = 5;
13 foo (ptr);
14 if (*ptr == 5)
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-elf/
H A Ddel.cc6 operator delete (void *ptr, const std::nothrow_t&) throw () argument
8 if (ptr)
9 free (ptr);
13 operator delete (void *ptr) throw () argument
15 if (ptr)
16 free (ptr);
20 operator delete[] (void *ptr) throw () argument
22 ::operator delete (ptr);
26 operator delete[] (void *ptr, const std::nothrow_t&) throw () argument
28 ::operator delete (ptr);
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/warn/
H A Dpr31246-2.C6 int* get_ptr(void* ptr) argument
8 return new(ptr) int();
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D20031124-1.c3 int f (void *ptr) argument
6 return ptr >= (void *) &stop;
H A D991208-1.c1 void fn (char *ptr) argument
3 void *p = ptr - 8 - 4;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D20031124-1.c3 int f (void *ptr) argument
6 return ptr >= (void *) &stop;
H A D991208-1.c1 void fn (char *ptr) argument
3 void *p = ptr - 8 - 4;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/builtins/
H A Dstrlen.c31 char *ptr; local
42 ptr = str;
43 ptr[0] = 'n'; ptr[1] = 't'; ptr[2] = 's'; ptr[3] = '\0';
44 if (strlen (ptr) == 0)
47 ptr[0] = 'n'; ptr[1] = 't'; ptr[
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/mips/
H A Dr10k-cache-barrier-11.c8 foo (int *ptr) argument
10 *ptr = bar (*ptr);
H A Dr10k-cache-barrier-12.c8 foo (int *ptr) argument
10 *ptr = bar (*ptr);
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-c/
H A Dutils.c37 char **ptr; local
39 for (ptr = argv; *ptr != NULL; ptr++)
40 free(*ptr);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c/
H A Dutils.c39 char **ptr; local
41 for (ptr = argv; *ptr != NULL; ptr++)
42 free(*ptr);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/i386/
H A Dms_hook_prologue.c9 unsigned char *ptr = (unsigned char *) foo; local
16 if(*ptr++ != 0x8b) return 1;
17 if(*ptr++ != 0xff) return 1;
19 if(*ptr++ != 0x55) return 1;
21 if(*ptr++ != 0x8b) return 1;
22 if(*ptr++ != 0xec) return 1;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/lto/
H A Dlto-endian.h37 get_uint16_le (const unsigned char *ptr) argument
39 return ptr[0] | (ptr[1] << 8);
43 get_uint32_le (const unsigned char *ptr) argument
45 return ptr[0] | (ptr[1] << 8) | (ptr[2] << 16) | (ptr[3] << 24);
51 #define ptr (uint64_t) ptr_ macro
52 return ptr[
54 #undef ptr macro
58 get_uint16_be(const unsigned char *ptr) argument
64 get_uint32_be(const unsigned char *ptr) argument
72 #define ptr macro
75 #undef ptr macro
79 put_uint16_le(unsigned char *ptr, uint16_t data) argument
86 put_uint32_le(unsigned char *ptr, uint32_t data) argument
95 put_uint64_le(unsigned char *ptr, uint64_t data) argument
108 put_uint16_be(unsigned char *ptr, uint16_t data) argument
115 put_uint32_be(unsigned char *ptr, uint32_t data) argument
124 put_uint64_be(unsigned char *ptr, uint64_t data) argument
137 get_string(unsigned char *ptr, char *dest, size_t len) argument
143 put_string(unsigned char *ptr, char *src, size_t len) argument
151 get_uint16(const unsigned char *ptr) argument
160 get_uint32(const unsigned char *ptr) argument
169 get_uint64(const unsigned char *ptr) argument
178 put_uint16(unsigned char *ptr, uint16_t data) argument
187 put_uint32(unsigned char *ptr, uint32_t data) argument
196 put_uint64(unsigned char *ptr, uint64_t data) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/videomode/
H A Dedidreg.h60 #define EDID_VENDOR_ID(ptr) ((((ptr)[8]) << 8) + ptr[9])
66 #define EDID_PRODUCT_ID(ptr) (((ptr)[10]) | (((ptr)[11]) << 8))
67 #define EDID_SERIAL_NUMBER(ptr) (((ptr)[12] << 24) + \
68 ((ptr)[13] << 16) + \
69 ((ptr)[1
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/charset/
H A Dasm5.c7 unsigned long int *ptr; local
8 ptr = ((unsigned long int *)

Completed in 196 milliseconds

1234567891011>>