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

1234567891011>>

/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_vm3_gc.rb6 GC.start
/macosx-10.9.5/dyld-239.4/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 + 2)
/macosx-10.9.5/bash-92/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.9.5/postfix-252/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.9.5/bind9-45.100/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.9.5/bind9-45.100/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.9.5/ntp-88/scripts/rc1/
H A Dpostinstall2 /etc/init.d/xntp start
/macosx-10.9.5/rsync-42/rsync/zlib/
H A Dinffast.h11 void inflate_fast OF((z_streamp strm, unsigned start));
/macosx-10.9.5/xnu-2422.115.4/libkern/zlib/
H A Dinffast.h38 void inflate_fast OF((z_streamp strm, unsigned start));
/macosx-10.9.5/dtrace-118.1/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.9.5/xnu-2422.115.4/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.9.5/sudo-72/src/zlib/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
/macosx-10.9.5/zlib-53/zlib/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
/macosx-10.9.5/tcl-102/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.9.5/dtrace-118.1/test/tst/common/end/
H A Derr.D_IDENT_UNDEF.timespent.d42 total = timestamp - start;
47 start = timestamp;
/macosx-10.9.5/emacs-92/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.9.5/ruby-104/ruby/bin/
H A Dirb12 IRB.start(__FILE__)
16 IRB.start(__FILE__)
/macosx-10.9.5/JavaScriptCore-7537.78.1/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.9.5/ICU-511.35/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.9.5/emacs-92/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.9.5/tcl-102/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.9.5/CPANInternal-140/HTTP-Proxy/eg/
H A Dproxy.pl7 $proxy->start;
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/eg/
H A Dproxy.pl7 $proxy->start;
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DDictationAlternative.cpp31 DictationAlternative::DictationAlternative(unsigned start, unsigned length, uint64_t context) argument
32 : rangeStart(start)
/macosx-10.9.5/ncurses-42/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 171 milliseconds

1234567891011>>