HomeSort by relevance Sort by last modified time
    Searched full:last (Results 151 - 175 of 23681) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm-generic/
shmbuf.h 28 __kernel_time_t shm_atime; /* last attach time */
32 __kernel_time_t shm_dtime; /* last detach time */
36 __kernel_time_t shm_ctime; /* last change time */
41 __kernel_pid_t shm_lpid; /* pid of last operator */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
shmbuf.h 28 __kernel_time_t shm_atime; /* last attach time */
32 __kernel_time_t shm_dtime; /* last detach time */
36 __kernel_time_t shm_ctime; /* last change time */
41 __kernel_pid_t shm_lpid; /* pid of last operator */
  /external/chromium_org/net/tools/balsa/
balsa_headers_token_utils.h 20 // Checks whether the last header token matches a given value. Useful to
22 // presence of multiple header lines with given key, the last token of the
23 // last line is compared.
35 // Removes the last token from the header value. In the presence of multiple
36 // header lines with given key, will remove the last token of the last line.
37 // Can be useful if the last encoding has to be removed.
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelectorList.h 75 // End of a multipart selector is indicated by m_isLastInTagHistory bit in the last item.
76 // End of the array is indicated by m_isLastInSelectorList bit in the last item.
83 const CSSSelector* last = &current; local
84 while (!last->isLastInTagHistory())
85 last++;
86 return last->isLastInSelectorList() ? 0 : last + 1;
  /external/libcxx/test/algorithms/alg.sorting/alg.min.max/
minmax_element.pass.cpp 15 // minmax_element(Iter first, Iter last);
24 test(Iter first, Iter last)
26 std::pair<Iter, Iter> p = std::minmax_element(first, last);
27 if (first != last)
29 for (Iter j = first; j != last; ++j)
37 assert(p.first == last);
38 assert(p.second == last);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/
minmax_element.pass.cpp 15 // minmax_element(Iter first, Iter last);
24 test(Iter first, Iter last)
26 std::pair<Iter, Iter> p = std::minmax_element(first, last);
27 if (first != last)
29 for (Iter j = first; j != last; ++j)
37 assert(p.first == last);
38 assert(p.second == last);
  /art/runtime/
monitor_pool.cc 71 Monitor* last = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(chunk) + local
73 last->next_free_ = nullptr;
75 last->monitor_id_ = OffsetToMonitorId((num_chunks_ - 1) * kChunkSize +
78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) -
80 before->next_free_ = last;
81 // Derive monitor_id from last.
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) -
85 last = before;
87 DCHECK(last == reinterpret_cast<Monitor*>(chunk));
88 first_free_ = last;
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
word_trimmer.cc 21 // A circular buffer of the last |keep + 1| words seen before position |start|
25 size_t last = std::string::npos; local
33 last = iter.pos();
41 last = iter.pos();
49 return text.substr(first, last - first);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingBehaviorTypes.h 29 // 1) Clicking below the last line of an editable area puts the caret at the end
30 // of the last line on Mac, but in the middle of the last line on Windows.
31 // 2) Pushing the down arrow key on the last line puts the caret at the end of the
32 // last line on Mac, but does nothing on Windows. A similar case exists on the
  /external/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/
Android.mk 17 test_makefile := external/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/Android.mk
19 test_name := strings/basic.string/string.ops/string_find.last.not.of/string_size
23 test_name := strings/basic.string/string.ops/string_find.last.not.of/pointer_size
27 test_name := strings/basic.string/string.ops/string_find.last.not.of/pointer_size_size
31 test_name := strings/basic.string/string.ops/string_find.last.not.of/char_size
  /external/libcxx/test/strings/basic.string/string.ops/string_find.last.of/
Android.mk 17 test_makefile := external/libcxx/test/strings/basic.string/string.ops/string_find.last.of/Android.mk
19 test_name := strings/basic.string/string.ops/string_find.last.of/string_size
23 test_name := strings/basic.string/string.ops/string_find.last.of/pointer_size
27 test_name := strings/basic.string/string.ops/string_find.last.of/pointer_size_size
31 test_name := strings/basic.string/string.ops/string_find.last.of/char_size
  /sdk/emulator/opengl/host/tools/emugen/
strUtils.cpp 21 std::string getNextToken(const std::string & str, size_t pos, size_t * last, const std::string & delim)
28 *last = str.find_first_of(delim, pos);
29 if (*last == std::string::npos) *last = str.size();
30 std::string retval = str.substr(pos, *last - pos);
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/Mci/
mcifc.h 98 #define MC_EXT_INFO_ID_FAULT_CAUSE 5 /**< MobiCore last fault cause */
99 #define MC_EXT_INFO_ID_FAULT_META 6 /**< MobiCore last fault meta */
100 #define MC_EXT_INFO_ID_FAULT_THREAD 7 /**< MobiCore last fault threadid */
101 #define MC_EXT_INFO_ID_FAULT_IP 8 /**< MobiCore last fault instruction pointer */
102 #define MC_EXT_INFO_ID_FAULT_SP 9 /**< MobiCore last fault stack pointer */
103 #define MC_EXT_INFO_ID_FAULT_ARCH_DFSR 10 /**< MobiCore last fault ARM arch information */
104 #define MC_EXT_INFO_ID_FAULT_ARCH_ADFSR 11 /**< MobiCore last fault ARM arch information */
105 #define MC_EXT_INFO_ID_FAULT_ARCH_DFAR 12 /**< MobiCore last fault ARM arch information */
106 #define MC_EXT_INFO_ID_FAULT_ARCH_IFSR 13 /**< MobiCore last fault ARM arch information */
107 #define MC_EXT_INFO_ID_FAULT_ARCH_AIFSR 14 /**< MobiCore last fault ARM arch information *
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
LastActivityManager.java 36 * A last activity manager for handling information about the last activity
38 * of existing Connections. It also allows to request last activity information
62 * To get the lapsed time since the last user logout is the same as above but
78 * @see <a href="http://xmpp.org/extensions/xep-0012.html">XEP-0012: Last
98 * Creates a last activity manager to response last activity requests.
101 * The Connection that the last activity requests will use.
132 // Register a listener for a last activity query
163 * The idle time is the lapsed time between the last message sent and now.
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_qsort.c 110 typedef struct { char * first; char * last; } stack_entry; member in struct:__anon13116
111 #define pushLeft {stack[stacktop].first=ffirst;stack[stacktop++].last=last;}
112 #define pushRight {stack[stacktop].first=first;stack[stacktop++].last=llast;}
113 #define doLeft {first=ffirst;llast=last;continue;}
114 #define doRight {ffirst=first;last=llast;continue;}
117 last=llast=stack[stacktop].last;\
133 * 3. We choose a pivot by looking at the first, last
187 { size_t l=last-ffirst,r=llast-first;
325 char *first,*last; local
356 char *first,*last; local
387 char *first,*last; local
    [all...]
  /external/chromium_org/base/memory/
scoped_vector.h 107 // Lets the ScopedVector take ownership of elements in [first,last).
109 void insert(iterator position, InputIterator first, InputIterator last) {
110 v_.insert(position, first, last);
118 iterator erase(iterator first, iterator last) {
119 STLDeleteContainerPointers(first, last);
120 return v_.erase(first, last);
128 // Like |erase()|, but doesn't delete the elements in [first, last).
129 iterator weak_erase(iterator first, iterator last) {
130 return v_.erase(first, last);
  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_log_browsertest.cc 48 scoped_refptr<Action> last = i->front(); local
50 ASSERT_EQ(extension_id, last->extension_id());
51 ASSERT_EQ(Action::ACTION_CONTENT_SCRIPT, last->action_type());
53 ActivityLogPolicy::Util::Serialize(last->args()));
56 last->SerializePageUrl());
59 last->page_title());
61 ActivityLogPolicy::Util::Serialize(last->other()));
62 ASSERT_EQ("", last->api_name());
63 ASSERT_EQ("", last->SerializeArgUrl());
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderThread.cpp 119 size_t last = tInfo.m_glDec.decode(readBuf.buf(), readBuf.validData(), m_stream); local
120 if (last > 0) {
122 readBuf.consume(last);
128 last = tInfo.m_gl2Dec.decode(readBuf.buf(), readBuf.validData(), m_stream);
129 if (last > 0) {
131 readBuf.consume(last);
138 last = m_rcDec.decode(readBuf.buf(), readBuf.validData(), m_stream);
139 if (last > 0) {
140 readBuf.consume(last);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_GetVLCBits.c 47 * last combinations.
58 * [in/out] pLast pointer to last status flag
60 * will be equal to 1: last == 0
65 * will be equal to 1: last == 1
70 * armVCM4P2_Huff_Tables_VLC.c for last == 0
71 * [in] pVlcTableL0 VLC table for last == 0
73 * armVCM4P2_Huff_Tables_VLC.c for last == 1
74 * [in] pVlcTableL1 VLC table for last == 1
76 * armVCM4P2_Huff_Tables_VLC.c for last == 0
78 * armVCM4P2_Huff_Tables_VLC.c for last ==
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
stat.h 88 struct timespec st_atim; /* Time of last access. */
89 struct timespec st_mtim; /* Time of last modification. */
90 struct timespec st_ctim; /* Time of last status change. */
95 __time_t st_atime; /* Time of last access. */
96 unsigned long int st_atimensec; /* Nscecs of last access. */
97 __time_t st_mtime; /* Time of last modification. */
98 unsigned long int st_mtimensec; /* Nsecs of last modification. */
99 __time_t st_ctime; /* Time of last status change. */
100 unsigned long int st_ctimensec; /* Nsecs of last status change. */
149 struct timespec st_atim; /* Time of last access. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
stat.h 88 struct timespec st_atim; /* Time of last access. */
89 struct timespec st_mtim; /* Time of last modification. */
90 struct timespec st_ctim; /* Time of last status change. */
95 __time_t st_atime; /* Time of last access. */
96 unsigned long int st_atimensec; /* Nscecs of last access. */
97 __time_t st_mtime; /* Time of last modification. */
98 unsigned long int st_mtimensec; /* Nsecs of last modification. */
99 __time_t st_ctime; /* Time of last status change. */
100 unsigned long int st_ctimensec; /* Nsecs of last status change. */
149 struct timespec st_atim; /* Time of last access. *
    [all...]
  /external/opencv/cv/src/
_cvkdtree.hpp 84 int dimension_of_highest_variance(__instype * first, __instype * last,
86 assert(last - first > 0);
92 for (__instype * k = first; k < last; ++k)
94 mean /= last - first;
96 for (__instype * k = first; k < last; ++k) {
100 var /= last - first;
113 // given point indices and dimension, find index of median; (almost) modifies [first,last)
114 // such that points_in[first,median]<=point[median], points_in(median,last)>point[median].
117 __instype * median_partition(__instype * first, __instype * last,
119 assert(last - first > 0)
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/string/
strtok.c 35 static char *last; local
37 return strtok_r(s, delim, &last);
41 strtok_r(char *s, const char *delim, char **last)
48 if (s == NULL && (s = *last) == NULL)
62 *last = NULL;
80 *last = s;
  /external/kernel-headers/original/uapi/asm-generic/
stat.h 36 long st_atime; /* Time of last access. */
38 long st_mtime; /* Time of last modification. */
40 long st_ctime; /* Time of last status change. */
61 int st_atime; /* Time of last access. */
63 int st_mtime; /* Time of last modification. */
65 int st_ctime; /* Time of last status change. */
  /external/kernel-headers/original/uapi/linux/
msg.h 19 struct msg *msg_last; /* last message in queue,unused */
20 __kernel_time_t msg_stime; /* last msgsnd time */
21 __kernel_time_t msg_rtime; /* last msgrcv time */
22 __kernel_time_t msg_ctime; /* last change time */
28 __kernel_ipc_pid_t msg_lspid; /* pid of last msgsnd */
29 __kernel_ipc_pid_t msg_lrpid; /* last receive pid */

Completed in 874 milliseconds

1 2 3 4 5 67 8 91011>>