/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
finin.s | 3 .type last,%function 4 last: label 6 .size last,.-last
|
foon.s | 3 .type last,%function 4 last: label 6 .size last,.-last
|
initn.s | 3 .type last,%function 4 last: label 6 .size last,.-last
|
/bionic/libc/upstream-freebsd/lib/libc/string/ |
wcsrchr.c | 35 const wchar_t *last; local 37 last = NULL; 40 last = s; 46 return ((wchar_t *)last);
|
/development/tools/idegen/src/ |
Stopwatch.java | 22 long last = System.currentTimeMillis(); field in class:Stopwatch 26 Log.info(label + ": " + (now - last) + "ms"); 27 last = now;
|
/external/valgrind/none/tests/amd64-linux/ |
map_32bits.c | 10 void *last; local 26 fprintf(stderr, "last mmap ok: %p\n", last); 29 last = res;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
armVCM4P2_DecodeVLCZigzag_intra.c | 95 OMX_U8 last = 0; local 135 &last, 151 if (last == 0)
|
omxVCM4P2_DecodeVLCZigzag_Inter.c | 94 OMX_U8 last,start = 0; local 111 &last, 127 if (last == 0)
|
/system/core/libpixelflinger/arch-arm64/ |
t32cb16blend.S | 166 last: label 210 b last
|
/system/core/libpixelflinger/ |
t32cb16blend.S | 153 last: label 203 b last
|
/external/libcap-ng/libcap-ng-0.7/bindings/python/test/ |
capng-test.py | 11 last = capng.CAP_LAST_CAP variable 26 if len < 80 and last > 30: 27 last = 30 variable 29 print("Doing advanced bit tests for %d capabilities...\n" % (last)) 30 for i in range(last+1):
|
/external/opencv3/modules/viz/test/ |
test_precomp.cpp | 11 char last = item1[item1.size()-1]; local 13 bool need_append = last != '/' && last != '\\';
|
/toolchain/binutils/binutils-2.25/binutils/ |
bfdtest1.c | 35 bfd *last, *next; local 50 for (last = bfd_openr_next_archived_file (archive, NULL); 51 last; 52 last = next) 54 next = bfd_openr_next_archived_file (archive, last); 55 bfd_close (last); 58 for (last = bfd_openr_next_archived_file (archive, NULL); 59 last; 60 last = next) 62 next = bfd_openr_next_archived_file (archive, last); [all...] |
/bionic/libc/upstream-openbsd/lib/libc/string/ |
strtok.c | 35 static char *last; local 37 return strtok_r(s, delim, &last); 42 strtok_r(char *s, const char *delim, char **last) 48 if (s == NULL && (s = *last) == NULL) 62 *last = NULL; 80 *last = s;
|
/development/tools/yuv420sp2rgb/ |
debug.c | 9 int i, last; local 13 for (i = last = 0; i < len; i++) { 22 while (last < i) { 23 if (isprint(pchr[last])) 24 fputc(pchr[last], s); 29 last++;
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_procmaps_linux.cc | 32 char *last = proc_self_maps_.data + proc_self_maps_.len; local 33 if (current_ >= last) return false; 39 char *next_line = (char*)internal_memchr(current_, '\n', last - current_); 41 next_line = last;
|
/external/curl/src/ |
tool_cfgable.c | 27 #include "memdebug.h" /* keep this as LAST include */ 148 struct OperationConfig *last = config; local 151 while(last) { 152 struct OperationConfig *prev = last->prev; 154 free_config_fields(last); 155 free(last); 157 last = prev;
|
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_erase/ |
iter_iter.pass.cpp | 12 // iterator erase(const_iterator first, const_iterator last); 24 typename S::const_iterator last = s.cbegin() + pos + n; local 25 typename S::iterator i = s.erase(first, last);
|
/external/libexif/test/ |
test-sorted.c | 33 ExifTag last = 0, current; local 34 num = exif_tag_table_count() - 1; /* last entry is a NULL terminator */ 37 if (current < last) { 46 last = current;
|
/external/mesa3d/src/glsl/ |
ir_function_can_inline.cpp | 30 * other than as the last instruction. We could potentially work 68 /* If the function is empty (no last instruction) or does not end with a 71 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); local 72 if (last == NULL || !last->as_return())
|
/external/parameter-framework/upstream/test/test-subsystem/ |
TESTSubsystemString.cpp | 60 auto last = std::copy(begin(strValue), end(strValue), destination); local 63 *last = 0;
|
/external/v8/test/mjsunit/ |
substr.js | 141 var last = x; variable 144 var z = last.substring(i); 145 last = z;
|
/frameworks/base/core/java/android/content/ |
ContentUris.java | 73 * Converts the last path segment to a long. 76 * stored in the last segment. 79 * @throws NumberFormatException if the last segment isn't a number 81 * @return the long conversion of the last segment or -1 if the path is 85 String last = contentUri.getLastPathSegment(); local 86 return last == null ? -1 : Long.parseLong(last);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_erase/ |
iter_iter.pass.cpp | 12 // iterator erase(const_iterator first, const_iterator last); 24 typename S::const_iterator last = s.cbegin() + pos + n; local 25 typename S::iterator i = s.erase(first, last);
|
/external/curl/tests/unit/ |
unit1308.c | 46 struct curl_httppost* last = NULL; variable in typeref:struct:curl_httppost 50 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name", 57 fail_unless(post == last, "post and last weren't the same"); 59 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode", 65 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent", 79 post = last = NULL; 81 rc = curl_formadd(&post, &last,
|