/prebuilts/ndk/8/platforms/android-8/arch-x86/usr/include/linux/ |
circ_buf.h | 25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;}) 27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
|
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/ |
circ_buf.h | 25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;}) 27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/ |
circ_buf.h | 25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;}) 27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/ |
circ_buf.h | 25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;}) 27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
|
/external/chromium/chrome/browser/ui/cocoa/ |
browser_command_executor.h | 13 @end
|
/external/chromium/chrome/browser/ui/cocoa/notifications/ |
balloon_view.h | 13 @end 19 @end 25 @end 32 @end
|
/external/chromium/chrome/browser/ui/cocoa/translate/ |
after_translate_infobar_controller.h | 11 @end
|
/external/clang/test/ARCMT/ |
GC.h | 6 @end
|
/external/clang/test/Index/Inputs/ |
complete-pch.h | 4 @end 9 @end
|
/external/clang/test/Index/ |
complete-protocols.m | 1 /* Note: the RUN lines are near the end of the file, since line/column 5 @end 15 @end
|
complete-properties.m | 1 /* Note: the RUN lines are near the end of the file, since line/column 12 @end 17 @end 22 @end 26 @end 34 @end 39 @end 46 @end 50 @end 55 @end [all...] |
/external/clang/test/Modules/Inputs/ |
category_other.h | 5 @end
|
/external/clang/test/PCH/Inputs/ |
chain-remap-types2.h | 5 @end
|
/external/clang/test/PCH/ |
method_pool.h | 18 @end 22 @end 30 @end 36 @end
|
objc_methods.h | 6 @end 14 @end 27 @end 30 @end 41 @end
|
/external/mesa3d/src/glsl/ |
strtod.h | 35 glsl_strtod(const char *s, char **end);
|
/external/qemu/android/utils/ |
timezone.h | 29 extern char* bufprint_zoneinfo_timezone( char* buffer, char* end );
|
/external/webkit/Source/WebKit/mac/Storage/ |
WebDatabaseQuotaManager.h | 32 @end
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebApplicationCacheQuotaManager.h | 32 @end
|
WebImageRendererFactory.m | 34 @end 47 @end
|
/frameworks/base/sax/java/android/sax/ |
EndTextElementListener.java | 20 * Listens for the end of text elements. 25 * Invoked at the end of a text element with the body of the element. 29 void end(String body); method in interface:EndTextElementListener
|
/bionic/libc/arch-mips/bionic/ |
cacheflush.c | 44 * int cacheflush (long start, long end, long flags) 59 int cacheflush (long start, long end, long flags) 61 if (end < start) { 65 * end => nbytes 70 XLOG("called with (start,len) instead of (start,end)"); 74 end += start; 82 * Modify "start" and "end" to avoid GCC 4.3.0-4.4.2 bug in 85 * "end" points to the last byte of the line before the last cache line. 87 * "end" to the last byte. 93 end = (end & (-lineSize)) - 1 [all...] |
/bootable/recovery/edify/ |
yydefs.h | 22 int start, end; member in struct:__anon742 29 (Current).end = YYRHSLOC(Rhs, N).end; \ 32 (Current).end = YYRHSLOC(Rhs, 0).end; \
|
/external/oprofile/libregex/ |
demangle_java_symbol.cpp | 40 string::const_iterator & begin, string::const_iterator end); 42 string::const_iterator & begin, string::const_iterator end); 46 string::const_iterator & begin, string::const_iterator end) 50 if (begin == end) 72 string::const_iterator & begin, string::const_iterator end) 74 if (base_type(result, begin, end)) 77 if (object_type(result, begin, end)) 80 if (array_type(result, begin, end)) 88 string::const_iterator & begin, string::const_iterator end) 90 if (begin == end || *begin != '[' [all...] |
/external/bison/src/ |
location.c | 40 if (loc.start.file != loc.end.file) 42 quotearg_n_style (3, escape_quoting_style, loc.end.file), 43 loc.end.line, loc.end.column - 1); 44 else if (loc.start.line < loc.end.line) 45 fprintf (out, "-%d.%d", loc.end.line, loc.end.column - 1); 46 else if (loc.start.column < loc.end.column - 1) 47 fprintf (out, "-%d", loc.end.column - 1);
|