Searched refs:start (Results 1 - 25 of 4398) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_vm3_gc.rb6 GC.start
/macosx-10.10/dyld-353.2.1/src/
H A Dstart_glue.h28 extern "C" void start();
31 // <rdar://problem/12792039> need 'start' to be one atom, but entry is in interior
34 #define address_of_start (void*)((uintptr_t)&start + 1)
36 #define address_of_start (void*)((uintptr_t)&start + 4)
38 #define address_of_start (void*)((uintptr_t)&start + 2)
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/examples/
H A Dmanexamp.c67 register int start, end; local
69 start = rl_point;
80 end = start + (count * direction);
88 if (start > end)
90 int temp = start;
91 start = end;
95 if (start == end)
100 rl_modifying (start, end);
102 for (; start != end; start
[all...]
/macosx-10.10/postfix-255/postfix/src/util/
H A Dmystrtok.c17 /* The \fIbufp\fR argument specifies the start of the search; it
46 char *start = *src; local
52 start += strspn(start, sep);
53 if (*start == 0) {
54 *src = start;
61 end = start + strcspn(start, sep);
65 return (start);
80 char *start; local
[all...]
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/
H A Dstart.sh18 # $Id: start.sh,v 1.42 2007/06/18 23:47:27 tbox Exp $
21 $PERL start.pl "$@"
/macosx-10.10/bind9-45.101/bind9/bin/tests/virtual-time/
H A Dstart.sh17 # $Id: start.sh,v 1.2 2010/06/17 05:38:05 marka Exp $
20 $PERL start.pl "$@"
/macosx-10.10/ntp-92/scripts/rc1/
H A Dpostinstall2 /etc/init.d/xntp start
/macosx-10.10/rsync-45/rsync/zlib/
H A Dinffast.h11 void inflate_fast OF((z_streamp strm, unsigned start));
/macosx-10.10/xnu-2782.1.97/libkern/zlib/
H A Dinffast.h38 void inflate_fast OF((z_streamp strm, unsigned start));
/macosx-10.10/dtrace-147/test/tst/common/misc/
H A Dtst.schrock.ksh39 self->start = vtimestamp;
43 /self->start/
45 trace(vtimestamp - self->start);
49 /self->start/
51 trace(vtimestamp - self->start);
55 /self->start/
57 self->start = 0;
62 /self->start/
64 trace(vtimestamp - self->start);
68 /self->start/
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/console/i386/
H A Dvideo_scroll.c34 void video_scroll_up(void *start, argument
38 bcopy(start, dest, ((char*)end - (char*)start) << 2);;
41 void video_scroll_down(void *start, /* HIGH addr */ argument
45 bcopy(end, dest, ((char*)start - (char*)end) << 2);
/macosx-10.10/sudo-73/src/zlib/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
/macosx-10.10/zlib-55/zlib/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
/macosx-10.10/tcl-105/tcl84/tcl/library/
H A Dword.tcl37 # start - Index into string specifying starting point.
39 proc tcl_wordBreakAfter {str start} {
41 set str [string range $str $start end]
43 return [expr {[lindex $result 1] + $start}]
57 # start - Index into string specifying starting point.
59 proc tcl_wordBreakBefore {str start} {
61 if {$start eq "end"} {
62 set start [string length $str]
64 if {[regexp -indices "^.*($tcl_wordchars$tcl_nonwordchars|$tcl_nonwordchars$tcl_wordchars)" [string range $str 0 $start] result]} {
80 # start
[all...]
/macosx-10.10/dtrace-147/test/tst/common/end/
H A Derr.D_IDENT_UNDEF.timespent.d42 total = timestamp - start;
47 start = timestamp;
/macosx-10.10/emacs-93/emacs/lisp/
H A Dcdl.el35 (let ((start (point)))
37 (goto-char start))
40 (defun cdl-put-region (filename start end)
44 (call-process-region start end "ncgen"
/macosx-10.10/ruby-106/ruby/bin/
H A Dirb12 IRB.start(__FILE__)
16 IRB.start(__FILE__)
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DMatchResult.h32 ALWAYS_INLINE MatchResult(size_t start, size_t end) argument
33 : start(start)
43 size_t start; member in struct:MatchResult::u::s
48 start = value.split.start;
59 return start != WTF::notFound;
64 return start == end;
67 size_t start; member in struct:MatchResult
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dcwchar.c24 wchar_t *start=dst; local
32 return start;
36 wchar_t *start=dst; local
41 return start;
45 const wchar_t *start=src; local
49 return src-start;
/macosx-10.10/emacs-93/emacs/lisp/textmodes/
H A Dunderline.el36 (defun underline-region (start end)
44 (move-marker end1 (max start end))
45 (goto-char (min start end))
52 (defun ununderline-region (start end)
59 (move-marker end1 (max start end))
60 (goto-char (min start end))
/macosx-10.10/tcl-105/tcl/tcl/library/
H A Dword.tcl67 # start - Index into string specifying starting point.
69 proc tcl_wordBreakAfter {str start} {
72 regexp -indices -start $start $WordBreakRE(after) $str result
85 # start - Index into string specifying starting point.
87 proc tcl_wordBreakBefore {str start} {
90 regexp -indices $WordBreakRE(before) [string range $str 0 $start] result
104 # start - Index into string specifying starting point.
106 proc tcl_endOfWord {str start} {
109 regexp -indices -start
[all...]
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dproxy.pl7 $proxy->start;
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dproxy.pl7 $proxy->start;
/macosx-10.10/WebCore-7600.1.25/editing/
H A DDictationAlternative.cpp31 DictationAlternative::DictationAlternative(unsigned start, unsigned length, uint64_t context) argument
32 : rangeStart(start)
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_erase.c52 NCURSES_CH_T *sp, *end, *start; local
59 start = win->_line[y].text;
60 end = &start[win->_maxx];
68 if (isWidecExt(start[0])) {
71 if (isWidecBase(start[-1])) {
72 --start;
75 --start;
80 for (sp = start; sp <= end; sp++)

Completed in 243 milliseconds

1234567891011>>