Searched refs:start (Results 26 - 50 of 4398) sorted by relevance

1234567891011>>

/macosx-10.10/postfix-255/
H A Dsacl.d15 ::sacl_check:sacl-start
17 self->start = timestamp;
24 printf("%5d %-16s %-32s %6d %14d\n", pid, probename, copyinstr(arg0), arg1, timestamp - self->start);
25 self->start = timestamp;
/macosx-10.10/rsync-45/rsync/popt/
H A Dfindme.c15 char * start, * chptr; local
25 start = pathbuf = alloca(strlen(path) + 1);
33 if ((chptr = strchr(start, ':')))
35 sprintf(buf, "%s/%s", start, argv0);
41 start = chptr + 1;
43 start = NULL;
44 } while (start && *start);
/macosx-10.10/CPANInternal-159.1/Time-HiRes-Value-0.07/examples/
H A Dtime.pl5 my $start = Time::HiRes::Value->now();
9 my $duration = Time::HiRes::Value->now() - $start;
/macosx-10.10/apache-793/httpd/modules/core/test/conf/
H A Dtest62.conf3 $start \
6 "Line:1-2 start at $start"
/macosx-10.10/diskdev_cmds-576/disklib/
H A Ddkcksum.c69 register u_short *start, *end; local
72 start = (u_short *)lp;
74 while (start < end)
75 sum ^= *start++;
/macosx-10.10/dtrace-147/test/tst/common/docsExamples/
H A Drenormalize.d43 start = timestamp;
53 normalize(@func, (timestamp - start) / 1000000000);
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dstrtok.c43 char *start = ptr; local
45 /* set the end pointer to the first byte after the start */
46 *end = start + 1;
59 return start; /* return the position where the string starts */
/macosx-10.10/ruby-106/ruby/lib/rdoc/markup/
H A Dattr_span.rb14 # Toggles +bits+ from +start+ to +length+
15 def set_attrs(start, length, bits)
16 for i in start ... (start+length)
/macosx-10.10/ICU-531.30/icuSources/samples/break/
H A Dubreak.c17 void printTextRange(UChar* str, int32_t start, int32_t end) argument
24 u_austrncpy(charBuf, str+start, sizeof(charBuf)-1);
26 printf("string[%2d..%2d] \"%s\"\n", start, end-1, charBuf);
35 int32_t start = ubrk_first(boundary); local
36 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end =
38 printTextRange(str, start, end );
45 int32_t start; local
47 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start,
56 int32_t start = ubrk_first(boundary); local
63 int32_t start; local
72 int32_t start; local
[all...]
H A Dbreak.cpp26 int32_t start, int32_t end )
32 printf(" %ld %ld\t", (long)start, (long)end);
33 printUnicodeString(UnicodeString(s, 0, start));
35 printUnicodeString(UnicodeString(s, start, end-start));
46 int32_t start = boundary.first(); local
49 start = end, end = boundary.next())
51 printTextRange( boundary, start, end );
59 for (int32_t start = boundary.previous();
60 start !
25 printTextRange( BreakIterator& iterator, int32_t start, int32_t end ) argument
70 int32_t start = boundary.first(); local
79 int32_t start = boundary.previous(); local
87 int32_t start = boundary.previous(); local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/
H A DContentType.cpp46 size_t start = strippedType.find(parameterName, semi + 1, false); local
47 if (start != notFound) {
48 start = strippedType.find('=', start + parameterName.length());
49 if (start != notFound) {
50 size_t quote = strippedType.find('\"', start + 1);
51 size_t end = strippedType.find('\"', start + 2);
53 start = quote;
55 end = strippedType.find(';', start + 1);
59 parameterValue = strippedType.substring(start
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dbidiconf.cpp44 UBool parseLevels(const char *&start);
45 UBool parseOrdering(const char *start);
46 UBool parseInputStringFromBiDiClasses(const char *&start);
118 UBool BiDiConformanceTest::parseLevels(const char *&start) { argument
121 while(*start!=0 && *(start=u_skipWhitespace(start))!=0 && *start!=';') {
122 if(*start=='x') {
124 ++start;
142 parseOrdering(const char *start) argument
205 parseInputStringFromBiDiClasses(const char *&start) argument
329 const char *start=u_skipWhitespace(line); local
493 const char *start=u_skipWhitespace(line); local
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dundo.c72 alloc_undo_entry (what, start, end, text)
74 int start, end;
81 temp->start = start;
92 rl_add_undo (what, start, end, text)
94 int start, end;
99 temp = alloc_undo_entry (what, start, end, text);
131 new = alloc_undo_entry (entry->what, entry->start, entry->end, (char *)NULL);
167 int waiting_for_begin, start, end; local
171 start
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/utbm/
H A Dutbm.c89 _utbm_skip(utbm_pattern_t p, ucs2_t *start, ucs2_t *end) argument
95 if (start >= end)
98 c1 = *start;
99 c2 = (start + 1 < end) ? *(start + 1) : ~0;
105 return ((unsigned long) (end - start) < sp->skip) ?
106 end - start : sp->skip;
113 _utbm_match(utbm_pattern_t pat, ucs2_t *text, ucs2_t *start, ucs2_t *end, argument
124 *match_end = (start - text) + 1;
126 c1 = *start;
438 ucs2_t *start, *end; local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/
H A DInspectorValues.cpp63 bool parseConstToken(const UChar* start, const UChar* end, const UChar** tokenEnd, const char* token) argument
65 while (start < end && *token != '\0' && *start++ == *token++) { }
68 *tokenEnd = start;
72 bool readInt(const UChar* start, const UChar* end, const UChar** tokenEnd, bool canHaveLeadingZeros) argument
74 if (start == end)
76 bool haveLeadingZero = '0' == *start;
78 while (start < end && '0' <= *start && *start <
90 parseNumberToken(const UChar* start, const UChar* end, const UChar** tokenEnd) argument
139 readHexDigits(const UChar* start, const UChar* end, const UChar** tokenEnd, int digits) argument
152 parseStringToken(const UChar* start, const UChar* end, const UChar** tokenEnd) argument
189 parseToken(const UChar* start, const UChar* end, const UChar** tokenStart, const UChar** tokenEnd) argument
264 decodeString(const UChar* start, const UChar* end, StringBuilder* output) argument
316 decodeString(const UChar* start, const UChar* end, String* output) argument
332 buildValue(const UChar* start, const UChar* end, const UChar** valueTokenEnd, int depth) argument
563 const UChar* start = characters; local
[all...]
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Diofile.d52 /* save time at start */
53 io:::wait-start
55 self->start = timestamp;
60 /self->start/
65 * the need to link process details to the start event.
67 this->elapsed = timestamp - self->start;
69 self->start = 0;
/macosx-10.10/dtrace-147/DTTk/Disk/
H A Diofile.d52 /* save time at start */
53 io:::wait-start
55 self->start = timestamp;
60 /self->start/
65 * the need to link process details to the start event.
67 this->elapsed = timestamp - self->start;
69 self->start = 0;
/macosx-10.10/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DConstrainedLoop.tcl7 set start [.m time]
8 set end [expr $start + 1200]
9 .m configure -mccommand [list ControllerProc $start $end]
10 MovieTimer .m $start $end
20 proc ControllerProc {start end w what {par {}}} {
26 if {$movieTime < $start || $movieTime > $end} {
36 proc MovieTimer {w start end} {
41 .m time $start
43 set timeId [after 30 MovieTimer $w $start $end]
59 pack [button .fr.start
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/graph/
H A Dutil.c17 q->start = q->end = NULL;
29 q->start = q->end = qi;
45 q->start = q->end = qi;
47 qi->next = q->start;
48 q->start = qi;
61 if (!q->start) {
65 qi = q->start;
68 q->start = qi->next;
84 NL* qi = q->start;
91 q->start
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/tree/
H A Dutil.c17 q->start = q->end = NULL;
29 q->start = q->end = qi;
45 q->start = q->end = qi;
47 qi->next = q->start;
48 q->start = qi;
61 if (!q->start) {
65 qi = q->start;
68 q->start = qi->next;
84 NL* qi = q->start;
91 q->start
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_initialized.py21 start = OC_TestInitialize.numUninitialized()
22 self.assertEquals(start, 0)
26 self.assertEquals(v, start)
30 self.assertEquals(v, start)
35 self.assertEquals(v, start)
38 start = OC_TestInitialize.numUninitialized()
39 self.assertEquals(start, 0)
44 self.assertEquals(v, start)
49 self.assertEquals(v, start)
52 start
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_initialized.py21 start = OC_TestInitialize.numUninitialized()
22 self.assertEquals(start, 0)
26 self.assertEquals(v, start)
30 self.assertEquals(v, start)
35 self.assertEquals(v, start)
38 start = OC_TestInitialize.numUninitialized()
39 self.assertEquals(start, 0)
44 self.assertEquals(v, start)
49 self.assertEquals(v, start)
52 start
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_initialized.py22 start = OC_TestInitialize.numUninitialized()
23 self.assertEqual(start, 0)
27 self.assertEqual(v, start)
31 self.assertEqual(v, start)
36 self.assertEqual(v, start)
39 start = OC_TestInitialize.numUninitialized()
40 self.assertEqual(start, 0)
45 self.assertEqual(v, start)
50 self.assertEqual(v, start)
53 start
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dmkstemp.c52 int start, i; local
55 start = strlen(template) - 1;
56 while(template[start] == 'X') {
57 template[start] = '0' + val % 10;
59 start--;
67 i = start + 1;
/macosx-10.10/Heimdal-398.1.2/lib/wind/
H A Derrorlist.c46 if (ea->start >= eb->start && ea->start < eb->start + eb->len)
48 return ea->start - eb->start;

Completed in 402 milliseconds

1234567891011>>