Searched refs:_end (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10.1/libauto-186/
H A DRange.h47 void *_end; // end of the range (one byte beyond last usable space) member in class:Auto::Range
54 Range() : _address(NULL), _end(NULL) {}
55 Range(void *address) : _address(address), _end(address) {}
56 Range(void *address, void *end) : _address(address), _end(end) {}
57 Range(void *address, usword_t size) : _address(address), _end(displace(address, size)) {}
65 inline void *end() const { return _end; }
66 inline const usword_t size() const { return (uintptr_t)_end - (uintptr_t)_address; }
68 inline void set_end(void *end) { _end = end; }
69 inline void set_size(usword_t size) { _end = displace(_address, size); }
70 inline void set_range(void *address, void *end) { _address = address; _end
[all...]
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dmail_queue.h135 char *_end; \
137 (ulval) = safe_strtoul((str), &_end, (base)); \
138 (error) = (*_end != 0 || ((ulval) == ULONG_MAX && errno == ERANGE)); \
166 char *_end; \
168 (ulval) = strtoul((str), &_end, 16); \
169 (error) = (*_end != 0 || ((ulval) == ULONG_MAX && errno == ERANGE)); \
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/commpage/
H A Dcommpage.h73 L ## label ## _end: ;\
74 .set L ## label ## _size, L ## label ## _end - L ## label ;\
/macosx-10.10.1/emacs-93/emacs/src/
H A Decrt0.c117 unsigned char *_end = &end; variable
131 _curbrk = _end;
132 _minbrk = _end;
/macosx-10.10.1/OpenSSL098-52/src/crypto/sha/asm/
H A Dsha512-x86_64.pl85 $_end="16*$SZ+2*8(%rsp)";
196 mov %rdx,$_end # save end pointer, "3rd" arg
248 cmp $_end,$inp
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/HeaderFilter/
H A Dsimple.pm39 sub end { goto &{ $_[0]{_end} }; }
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/HeaderFilter/
H A Dsimple.pm39 sub end { goto &{ $_[0]{_end} }; }
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/BodyFilter/
H A Dsimple.pm43 sub end { goto &{ $_[0]{_end} }; }
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/BodyFilter/
H A Dsimple.pm43 sub end { goto &{ $_[0]{_end} }; }
/macosx-10.10.1/xnu-2782.1.97/tools/lldbmacros/core/
H A Dcvalue.py69 _end = int(key.stop)
74 while _start < _end:
/macosx-10.10.1/OpenSSL098-52/src/crypto/perlasm/
H A Dx86unix.pl415 ${dot}L_${func}_end:
420 { push(@out,"SIZE($func,${dot}L_${func}_end-$func)\n"); }
423 else { push(@out,".size\t$func,${dot}L_${func}_end-$func\n"); }
449 push(@out,"${dot}L_${func}_end:\n");
451 { push(@out,"SIZE($func,${dot}L_${func}_end-$func)\n"); }
454 else { push(@out,".size\t$func,${dot}L_${func}_end-$func\n"); }
/macosx-10.10.1/llvmCore-3425.0.34/bindings/ocaml/llvm/
H A Dllvm_ocaml.c79 CAMLprim value llvm_##camlname##_end(pty Mom) { \

Completed in 313 milliseconds