| /netbsd-src/sys/arch/sparc64/include/ |
| H A D | bus_funcs.h | 137 NULL : (void *)(vaddr_t)((h)._ptr)) 172 (0 ? (t)->type : lduba((h)._ptr + (o), (h)._asi)) 175 (0 ? (t)->type : lduha((h)._ptr + (o), (h)._asi)) 178 (0 ? (t)->type : lda((h)._ptr + (o), (h)._asi)) 181 (0 ? (t)->type : ldxa((h)._ptr + (o), (h)._asi)) 185 lduba((h)._ptr + (o), (h)._asi); \ 187 printf("bsr1(%llx + %llx, %x) -> %x\n", (long long)(h)._ptr, \ 194 lduha((h)._ptr + (o), (h)._asi); \ 196 printf("bsr2(%llx + %llx, %x) -> %x\n", (long long)(h)._ptr, \ 203 lda((h)._ptr + (o), (h)._asi); \ [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/util/container/ |
| H A D | array.d | 43 foreach (ref val; _ptr[nlength .. _length]) common.destroy(val); in Array() 44 _ptr = cast(T*)common.xrealloc(_ptr, reqsize); in Array() 46 foreach (ref val; _ptr[_length .. nlength]) common.initialize(val); in Array() 63 return _ptr[0]; in Array() 70 return _ptr[_length - 1]; in Array() 77 return _ptr[idx]; in Array() 82 return _ptr[0 .. _length]; in Array() 89 return _ptr[a .. b]; in Array() 119 _ptr[i] = _ptr[i+1]; in Array() 125 auto ptr = _ptr; in Array() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/container/ |
| H A D | array.d | 43 foreach (ref val; _ptr[nlength .. _length]) common.destroy(val); in Array() 44 _ptr = cast(T*)common.xrealloc(_ptr, reqsize); in Array() 46 foreach (ref val; _ptr[_length .. nlength]) common.initialize(val); in Array() 63 return _ptr[0]; in Array() 70 return _ptr[_length - 1]; in Array() 77 return _ptr[idx]; in Array() 82 return _ptr[0 .. _length]; in Array() 89 return _ptr[a .. b]; in Array() 119 _ptr[i] = _ptr[i+1]; in Array() 125 auto ptr = _ptr; in Array() [all …]
|
| /netbsd-src/external/bsd/kyua-cli/dist/utils/ |
| H A D | auto_array.ipp | 45 _ptr(ptr) 61 _ptr(ptr) 72 _ptr(ptr.release()) 85 _ptr(ref._ptr) 94 if (_ptr != NULL) 95 delete [] _ptr; 106 return _ptr; 117 return _ptr; 128 T* ptr = _ptr; 129 _ptr = NULL; [all …]
|
| H A D | auto_array.hpp | 56 T* _ptr; member in utils::detail::auto_array_ref 78 T* _ptr; member in utils::auto_array
|
| /netbsd-src/sys/external/isc/atheros_hal/dist/ar5416/ |
| H A D | ar5416desc.h | 244 #define AR_SendTimestamp(_ptr) (_ptr)[2] argument 247 #define AR_BaBitmapLow(_ptr) (_ptr)[3] argument 250 #define AR_BaBitmapHigh(_ptr) (_ptr)[4] argument 263 #define AR_TxEVM0(_ptr) (_ptr)[6] argument 266 #define AR_TxEVM1(_ptr) (_ptr)[7] argument 269 #define AR_TxEVM2(_ptr) (_ptr)[8] argument
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/internal/ |
| H A D | cstring.d | 93 res._ptr = null; 105 res._ptr = res.useStack; 117 res._ptr = () @trusted { 158 res._ptr = (heapBuffer is null ? res.useStack : &heapBuffer[0]); 232 return _ptr == useStack ? _buff.ptr : _ptr; 247 if (_ptr != useStack) 250 pureFree(_ptr); 257 To* _ptr; member
|
| /netbsd-src/sys/arch/sbmips/include/ |
| H A D | disklabel.h | 156 uint32_t *_ptr = (uint32_t *) (bb); \ 164 _cksum += _ptr[_i]; \ 171 uint32_t *_ptr = (uint32_t *) (data); \ 179 _cksum += _ptr[_i]; \
|
| /netbsd-src/sys/arch/evbmips/include/ |
| H A D | disklabel.h | 161 uint32_t *_ptr = (uint32_t *) (bb); \ 169 _cksum += _ptr[_i]; \ 176 uint32_t *_ptr = (uint32_t *) (data); \ 184 _cksum += _ptr[_i]; \
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/ |
| H A D | cstring.d | 109 return _ptr == useStack ? _buff.ptr : _ptr; in inout() 124 if (_ptr != useStack) in ~this() 127 free(_ptr); in ~this() 132 To* _ptr; 202 res._ptr = null; 221 res._ptr = p_is_onstack ? useStack : &p[0];
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/config/mingw/ |
| H A D | msvc.c | 68 const int c = *fp->_ptr; in _fgetc_nolock() 69 fp->_ptr++; in _fgetc_nolock() 87 *fp->_ptr = (char) c; in _fputc_nolock() 88 fp->_ptr++; in _fputc_nolock()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | bitmanip.d | 986 size_t* _ptr; 1093 _ptr = cast(size_t*) v.ptr; 1156 _ptr = ptr; 1196 auto b = _ptr[0 .. olddim]; 1198 _ptr = b.ptr; 1242 return cast(bool) bt(_ptr, i); 1270 bts(_ptr, i); 1272 btr(_ptr, i); 1282 _ptr[0 .. fullWords] = val ? ~size_t(0) : 0; 1286 _ptr[fullWords] |= endMask; [all …]
|
| /netbsd-src/sys/arch/arm/at91/ |
| H A D | at91usartreg.h | 179 const char *_ptr = (string); \ 180 while (*_ptr) { \ 181 USART_PUTC(*_ptr); \ 182 _ptr++; \
|
| H A D | at91dbgureg.h | 207 const char *_ptr = (string); \ 208 while (*_ptr) { \ 209 DBGU_PUTC(*_ptr); \ 210 _ptr++; \
|
| /netbsd-src/crypto/external/bsd/netpgp/dist/src/libmj/ |
| H A D | defs.h | 57 #define RENEW(type, _ptr, _size, _newsize, where, action) do { \ argument 59 _newptr = realloc(_ptr, (size_t)(_newsize) * sizeof(type)); \ 67 _ptr = _newptr; \
|
| /netbsd-src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/ |
| H A D | vchiq_shim.c | 782 vchi_readbuf_uint32(const void *_ptr) in vchi_readbuf_uint32() argument 784 const unsigned char *ptr = _ptr; in vchi_readbuf_uint32() 793 vchi_writebuf_uint32(void *_ptr, uint32_t value) in vchi_writebuf_uint32() argument 795 unsigned char *ptr = _ptr; in vchi_writebuf_uint32() 807 vchi_readbuf_uint16(const void *_ptr) in vchi_readbuf_uint16() argument 809 const unsigned char *ptr = _ptr; in vchi_readbuf_uint16() 818 vchi_writebuf_uint16(void *_ptr, uint16_t value) in vchi_writebuf_uint16() argument 820 unsigned char *ptr = _ptr; in vchi_writebuf_uint16()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | bitmanip.d | 779 size_t* _ptr; 834 auto b = _ptr[0 .. olddim]; 836 _ptr = b.ptr; 854 return cast(bool) bt(_ptr, i); 883 bts(_ptr, i); 885 btr(_ptr, i); 896 auto b = _ptr[0 .. dim].dup; 898 ba._ptr = b.ptr; 1130 auto p1 = this._ptr; 1131 auto p2 = a2._ptr; [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libiberty/ |
| H A D | vsprintf.c | 43 b->_ptr = buf; in vsprintf() 47 b._ptr = buf; in vsprintf()
|
| /netbsd-src/external/gpl3/binutils.old/dist/libiberty/ |
| H A D | vsprintf.c | 43 b->_ptr = buf; in vsprintf() 47 b._ptr = buf; in vsprintf()
|
| /netbsd-src/external/gpl3/binutils/dist/libiberty/ |
| H A D | vsprintf.c | 43 b->_ptr = buf; in vsprintf() 47 b._ptr = buf; in vsprintf()
|
| H A D | lrealpath.c | 73 # define WIN32_REPLACE_SLASHES(_ptr, _len) \ argument 75 if ((_ptr)[i] == '\\') (_ptr)[i] = '/';
|
| /netbsd-src/external/gpl3/gcc.old/dist/libiberty/ |
| H A D | vsprintf.c | 43 b->_ptr = buf; in vsprintf() 47 b._ptr = buf; in vsprintf()
|
| /netbsd-src/sys/external/bsd/drm/dist/bsd-core/ |
| H A D | drm_hashtab.h | 39 #define drm_hash_entry(_ptr, _type, _member) container_of(_ptr, _type, _member) argument
|
| /netbsd-src/sys/external/bsd/drm2/dist/include/drm/ |
| H A D | drm_hashtab.h | 44 #define drm_hash_entry(_ptr, _type, _member) container_of(_ptr, _type, _member) argument
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/ |
| H A D | mutation.d | 1417 this(int* ptr) { _ptr = ptr; } 1418 ~this() { if (_ptr) ++*_ptr; } 1419 int* _ptr; 1425 assert(foo2._ptr is &val); 1431 assert(foo1._ptr is &val); 1432 assert(foo2._ptr is null); 1490 ~this() pure nothrow @nogc { if (_ptr) ++*_ptr; } 1491 int* _ptr; 1502 assert(src[].all!(e => e._ptr is null)); 1503 assert(dst[0 .. 3].all!(e => e._ptr !is null)); [all …]
|