HomeSort by relevance Sort by last modified time
    Searched refs:last (Results 1 - 25 of 2370) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/harfbuzz_ng/.ci/
fail.sh 4 last=$(tail -1 $f)
5 if [[ $last = FAIL* ]]; then
8 elif [[ $last = PASS* ]]; then
  /external/libcxx/test/std/utilities/time/time.cal/time.cal.operators/
month_day_last.pass.cpp 20 // Returns: month(m) / last.
24 // Returns: m / last.
28 // Returns: month(m) / last.
31 // [Note: A month_day_last object can be constructed using the expression m/last or last/m,
34 // constexpr auto mdl = February/last; // mdl is the last day of February of an as yet unspecified year
56 constexpr std::chrono::last_spec last = std::chrono::last; local
58 ASSERT_SAME_TYPE(month_day_last, decltype(last/February))
    [all...]
month_weekday_last.pass.cpp 50 constexpr std::chrono::last_spec last = std::chrono::last; local
53 ASSERT_NOEXCEPT (February/Tuesday[last]);
54 ASSERT_SAME_TYPE(month_weekday_last, decltype(February/Tuesday[last]));
55 ASSERT_NOEXCEPT (Tuesday[last]/February);
56 ASSERT_SAME_TYPE(month_weekday_last, decltype(Tuesday[last]/February));
60 constexpr month_weekday_last wdi = February/Tuesday[last];
62 static_assert(wdi.weekday_last() == Tuesday[last], "");
69 weekday_last wdi = weekday{j}[last];
83 ASSERT_SAME_TYPE(month_weekday_last, decltype(2/Tuesday[last]));
    [all...]
  /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);
  /external/tensorflow/tensorflow/core/kernels/
fractional_pool_common.h 27 static inline void RandomShuffle(Iter first, Iter last, const Random& uniform) {
28 if (first == last) {
31 const auto stop = last - 1;
34 iter_swap(i, i + uniform(last - i));
  /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;
  /external/cldr/tools/java/org/unicode/cldr/draft/
FilteredTransform.java 19 int last = 0; local
24 if (startEnd[0] > last) {
25 result.append(source.substring(last, startEnd[0]));
28 last = startEnd[1];
30 if (last < source.length()) {
31 result.append(source.substring(last));
Compacter.java 63 for (int i = interval.first; i <= interval.last; ++i) {
73 int last = -1; local
77 first = last = cp;
78 } else if (cp == last + 1) {
79 last = cp;
81 result.add(new Interval(first, last));
82 first = last = cp;
86 result.add(new Interval(first, last));
109 int last = -1; local
113 first = last = cp
    [all...]
  /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/curl/lib/
strtok.h 28 char *Curl_strtok_r(char *s, const char *delim, char **last);
  /external/curl/src/
slist_wc.c 29 /* The last #include files should be: */
53 list->last = new_item;
57 list->last->next = new_item;
58 list->last = list->last->next;
slist_wc.h 28 /* linked-list structure with last node cache for easysrc */
31 struct curl_slist *last; member in struct:slist_wc
  /external/libpcap/missing/
strtok_r.c 44 pcap_strtok_r(char *s, const char *delim, char **last)
49 if (s == NULL && (s = *last) == NULL)
63 *last = NULL;
81 *last = s;
  /external/mesa3d/src/compiler/glsl/
ir_basic_block.h 29 ir_instruction *last,
ir_function_can_inline.cpp 30 * than as the last instruction. In lower_jumps.cpp, we can lower return
67 /* If the function is empty (no last instruction) or does not end with a
70 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); local
71 if (last == NULL || !last->as_return())
  /external/u-boot/board/keymile/km83xx/
km83xx_i2c.c 29 uchar last; local
41 last = in_8(&base->dr);
45 * do read until the last bit is 1, but stop if the full eeprom is
48 while (((last & 0x01) != 0x01) &&
51 last = in_8(&base->dr);
54 if ((last & 0x01) != 0x01)
56 if ((last != 0xff) || (nbr_read > 1))
58 nbr_read, last);
69 nbr_read, last);
  /external/python/cpython2/Doc/includes/
noddy2.c 7 PyObject *last; /* last name */ member in struct:__anon36414
15 Py_XDECREF(self->last);
32 self->last = PyString_FromString("");
33 if (self->last == NULL) {
47 PyObject *first=NULL, *last=NULL, *tmp; local
49 static char *kwlist[] = {"first", "last", "number", NULL};
52 &first, &last,
63 if (last) {
64 tmp = self->last;
    [all...]
  /external/python/cpython3/Doc/includes/
custom2.c 7 PyObject *last; /* last name */ member in struct:__anon36970
15 Py_XDECREF(self->last);
30 self->last = PyUnicode_FromString("");
31 if (self->last == NULL) {
43 static char *kwlist[] = {"first", "last", "number", NULL};
44 PyObject *first = NULL, *last = NULL, *tmp; local
47 &first, &last,
57 if (last) {
58 tmp = self->last;
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
stdarg.h 44 #define va_start(ap, last) \
45 __builtin_va_start((ap), (last))
65 #define va_start(ap, last) \
66 ((ap) = (va_list)&(last) + __va_size(last))
  /external/google-breakpad/src/common/linux/
linux_libc_support_unittest.cc 171 const char* last; local
173 last = my_read_hex_ptr(&result, "");
175 ASSERT_EQ(*last, 0);
177 last = my_read_hex_ptr(&result, "0");
179 ASSERT_EQ(*last, 0);
181 last = my_read_hex_ptr(&result, "0123");
183 ASSERT_EQ(*last, 0);
185 last = my_read_hex_ptr(&result, "0123a");
187 ASSERT_EQ(*last, 0);
189 last = my_read_hex_ptr(&result, "0123a-")
196 const char* last; local
    [all...]
  /external/u-boot/drivers/watchdog/
tangier_wdt.c 30 static unsigned long last; local
39 if (last > now)
40 last = 0;
42 if (unlikely((now - last) > (WDT_PRETIMEOUT / 2) * 1000000)) {
43 last = now;
  /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,
  /external/iptables/extensions/
libxt_NFQUEUE.c 37 " --queue-balance first:last Balance flows between queues <value> to <value>.\n");
46 " --queue-balance first:last Balance flows between queues <value> to <value>.\n"
57 " --queue-balance first:last Balance flows between queues <value> to <value>.\n"
167 unsigned int last = tinfo->queues_total; local
169 if (last > 1) {
170 last += tinfo->queuenum - 1;
171 printf(" NFQUEUE balance %u:%u", tinfo->queuenum, last);
181 unsigned int last = info->queues_total; local
183 if (last > 1) {
184 last += info->queuenum - 1
197 unsigned int last = info->queues_total; local
223 unsigned int last = tinfo->queues_total; local
236 unsigned int last = info->queues_total; local
252 unsigned int last = info->queues_total; local
288 unsigned int last = tinfo->queues_total; local
304 unsigned int last = info->queues_total; local
322 unsigned int last = info->queues_total; local
    [all...]
  /external/vogar/src/vogar/target/
TargetMonitorRunListener.java 87 int last = stackTraceElements.length - 1; local
88 for (; last >= 0; last--) {
89 String className = stackTraceElements[last].getClassName();
96 if (last < stackTraceElements.length) {
97 last++;
104 for (; first < last; first++) {
115 if (first < last) {
116 t.setStackTrace(Arrays.copyOfRange(stackTraceElements, first, last));

Completed in 2138 milliseconds

1 2 3 4 5 6 7 8 91011>>