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

1234567891011>>

/macosx-10.9.5/curl-78.94.1/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.9.5/WebKit-7537.78.2/mac/Plugins/
H A DWebPluginPrivate.h31 @end
/macosx-10.9.5/libauto-185.5/auto_tester/
H A DBlackBoxTest.m29 @end
H A DBlackBoxTest.h32 @end
/macosx-10.9.5/objc4-551.1/test/
H A Dunload.h3 @interface SmallClass : TestRoot @end
5 @interface BigClass : TestRoot @end
/macosx-10.9.5/ruby-104/ruby/win32/
H A Drmall.bat3 if "%1" == "" goto :end
6 :end label
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVPreferencesController.h4 @end
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DJVPreferencesController.h4 @end
/macosx-10.9.5/bash-92/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.9.5/sudo-72/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.9.5/xnu-2422.115.4/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.9.5/gnutar-452/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.9.5/tcl-102/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.9.5/tcl-102/tk/tk/win/
H A Dmkd.bat4 if exist %1\nul goto end
7 if errorlevel 1 goto end
11 :end label
/macosx-10.9.5/Chess-310.5/Sources/
H A DMBCBoardViewModels.h52 @end
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebCoreView.h28 @end
H A DWebCoreFullScreenWindow.h32 @end
/macosx-10.9.5/WebKit-7537.78.2/mac/Carbon/
H A DCarbonWindowContentView.m35 @end
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebFormDelegatePrivate.h33 @end
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Plugins/Netscape/mac/
H A DWKNPAPIPlugInContainer.h28 @end
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/framework/src/objc/
H A DRBTestProbe.m14 @end
23 @end
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Fortune.wdgt/SimplePlugin/
H A DMyPluginClass.m9 @end
20 @end
/macosx-10.9.5/WebCore-7537.78.1/accessibility/mac/
H A DWebAccessibilityObjectWrapperMac.h36 @end

Completed in 441 milliseconds

1234567891011>>