HomeSort by relevance Sort by last modified time
    Searched refs:end (Results 51 - 75 of 28003) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/PCH/Inputs/
chain-selectors2.h 7 @end
17 @end
chain-remap-types2.h 5 @end
  /external/clang/test/SemaObjCXX/Inputs/
arc-system-header.h 2 @end
14 @end
  /external/compiler-rt/test/profile/Linux/
instrprof-basic.c 13 int end(int i) { function
22 end(1);
  /external/compiler-rt/test/profile/
instrprof-basic.c 27 int end(int i) { function
36 end(1);
  /external/mesa3d/src/util/
strtod.h 41 _mesa_strtod(const char *s, char **end);
44 _mesa_strtof(const char *s, char **end);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDAppEngineClient.h 14 @end
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m32r/
seth.s 3 .end
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-z8k/
0filler.s 6 .end
branch-target2.s 5 .end
filler.s 6 .end
  /external/mesa3d/src/gallium/auxiliary/util/
u_range.h 43 unsigned end; /* exclusive */ member in struct:util_range
54 range->end = 0;
59 util_range_add(struct util_range *range, unsigned start, unsigned end)
61 if (start < range->start || end > range->end) {
64 range->end = MAX2(end, range->end);
70 util_ranges_intersect(struct util_range *range, unsigned start, unsigned end)
72 return MAX2(start, range->start) < MIN2(end, range->end)
    [all...]
  /external/lzma/CPP/Common/
StringToInt.cpp 12 uintType ConvertStringTo ## uintType(const charType *s, const charType **end) throw() { \
13 if (end) *end = s; \
17 if (c < '0' || c > '9') { if (end) *end = s; return res; } \
29 Int32 ConvertStringToInt32(const wchar_t *s, const wchar_t **end) throw()
31 if (end)
32 *end = s;
47 if (end)
48 *end = end2;
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
Range.java 6 * A range of characters in a source file, from "begin" to "end", including the characters at "begin" and "end".
12 public final Position end; field in class:Range
14 public Range(Position begin, Position end) {
18 if (end == null) {
19 throw new IllegalArgumentException("end can't be null");
22 this.end = end;
25 public static Range range(Position begin, Position end) {
26 return new Range(begin, end);
    [all...]
  /bionic/libc/arch-mips/bionic/
cacheflush.cpp 42 // int cacheflush (long start, long end, long flags)
48 int cacheflush(long start, long end, long /*flags*/) {
49 if (end < start) {
54 "cacheflush called with (start,len) instead of (start,end)");
57 end += start;
62 __builtin___clear_cache(reinterpret_cast<char*>(start), reinterpret_cast<char*>(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
  /external/clang/test/Modules/Inputs/
MethodPoolCombined1.h 5 @end
category_other.h 5 @end
category_right_sub.h 3 @end
9 @end
14 @end
17 @end
typo.h 5 @end
  /external/clang/test/Modules/Inputs/attr-unavailable/
oneB.h 5 @end
  /external/clang/test/PCH/
method_pool.h 18 @end
22 @end
30 @end
36 @end
  /external/fio/lib/
strntol.h 4 long strntol(const char *str, size_t sz, char **end, int base);

Completed in 991 milliseconds

1 23 4 5 6 7 8 91011>>