Searched refs:end (Results 1 - 25 of 6376) sorted by relevance

1234567891011>>

/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dstrtok.c31 Curl_strtok_r(char *ptr, const char *sep, char **end) argument
35 ptr = *end;
45 /* set the end pointer to the first byte after the start */
46 *end = start + 1;
50 while(**end && !strchr(sep, **end))
51 ++*end;
53 if(**end) {
54 /* the end is not a null byte */
55 **end
[all...]
H A Dstrtoofft.c57 char *end; local
65 end = (char *)nptr;
66 while(ISSPACE(end[0])) {
67 end++;
71 if(end[0] == '-') {
73 end++;
75 else if(end[0] == '+') {
76 end++;
78 else if(end[0] == '\0') {
81 *endptr = end;
[all...]
/macosx-10.10.1/WebKit-7600.1.25/ios/WebCoreSupport/
H A DWebCaretChangeListener.h31 @end
/macosx-10.10.1/libauto-186/auto_tester/
H A DBlackBoxTest.m29 @end
H A DBlackBoxTest.h32 @end
/macosx-10.10.1/objc4-646/test/
H A Dunload.h3 @interface SmallClass : TestRoot @end
5 @interface BigClass : TestRoot @end
/macosx-10.10.1/ruby-106/ruby/win32/
H A Drmall.bat3 if "%1" == "" goto :end
6 :end label
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVPreferencesController.h4 @end
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVPreferencesController.h4 @end
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVPreferencesController.h4 @end
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/examples/
H A Dmanexamp.c67 register int start, end; local
79 /* Find the end of the range to modify. */
80 end = start + (count * direction);
83 if (end > rl_end)
84 end = rl_end;
85 else if (end < 0)
86 end = -1;
88 if (start > end)
91 start = end;
92 end
[all...]
/macosx-10.10.1/sudo-73/src/
H A Dlogwrap.c47 char *end; local
54 end = beg + maxlen;
55 while (end != beg && *end != ' ')
56 end--;
57 if (beg == end) {
59 end = strchr(beg + maxlen, ' ');
60 if (end == NULL)
63 fprintf(fp, "%s%.*s\n", indent, (int)(end - beg), beg);
64 while (*end
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/console/i386/
H A Dvideo_scroll.c35 void *end,
38 bcopy(start, dest, ((char*)end - (char*)start) << 2);;
42 void *end, /* LOW addr */
45 bcopy(end, dest, ((char*)start - (char*)end) << 2);
34 video_scroll_up(void *start, void *end, void *dest) argument
41 video_scroll_down(void *start, void *end, void *dest) argument
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dstrnlen.c29 const char *end = memchr (string, '\0', maxlen); local
30 return end ? (size_t) (end - string) : maxlen;
H A Dstrnlen1.c31 const char *end = (const char *) memchr (string, '\0', maxlen); local
32 if (end != NULL)
33 return end - string + 1;
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A DCSLwithAB.tcl16 set end [expr [s length] - 1]
21 s read $filename -fileformat raw -skip 60 -end $end
27 s read $filename -fileformat raw -skip [expr 60 + $end * 2 + 8] -end $end
/macosx-10.10.1/tcl-105/tk/tk/win/
H A Dmkd.bat4 if exist %1\nul goto end
7 if errorlevel 1 goto end
11 :end label
/macosx-10.10.1/Chess-310.6/Sources/
H A DMBCBoardViewModels.h52 @end
/macosx-10.10.1/WebKit-7600.1.25/mac/Carbon/
H A DCarbonWindowContentView.m35 @end
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebFormDelegatePrivate.h33 @end
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/mac/
H A DWKNPAPIPlugInContainer.h28 @end
/macosx-10.10.1/xnu-2782.1.97/tools/tests/perf_index/PerfIndex_COPS_Module/
H A DPerfIndex.h13 @end
/macosx-10.10.1/Security-57031.1.35/certificates/CertificateTool/CertificateTool/
H A DDataConversion.h31 @end
51 @end
/macosx-10.10.1/WebKit-7600.1.25/ios/DefaultDelegates/
H A DWebDefaultFrameLoadDelegate.h29 @end
H A DWebDefaultResourceLoadDelegate.h29 @end

Completed in 169 milliseconds

1234567891011>>