Searched refs:last (Results 1 - 25 of 1708) sorted by relevance

1234567891011>>

/external/mesa3d/src/compiler/glsl/
H A Dir_basic_block.h26 ir_instruction *last,
H A Dir_function_can_inline.cpp30 * 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/valgrind/memcheck/tests/
H A Dsbfragment.stdout.exp1 after 3000 loops, last size block requested 96032008
/external/libexif/test/
H A Dtest-sorted.c33 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/
H A Dstrtok.h28 char *Curl_strtok_r(char *s, const char *delim, char **last);
/external/curl/src/
H A Dslist_wc.c29 /* The last #include files should be: */
53 list->last = new_item;
57 list->last->next = new_item;
58 list->last = list->last->next;
H A Dslist_wc.h28 /* linked-list structure with last node cache for easysrc */
31 struct curl_slist *last; member in struct:slist_wc
/external/libpcap/missing/
H A Dstrtok_r.c44 pcap_strtok_r(char *s, const char *delim, char **last) argument
49 if (s == NULL && (s = *last) == NULL)
63 *last = NULL;
81 *last = s;
/external/tensorflow/tensorflow/core/kernels/
H A Dfractional_pool_common.h27 static inline void RandomShuffle(Iter first, Iter last, const Random& uniform) { argument
28 if (first == last) {
31 const auto stop = last - 1;
34 iter_swap(i, i + uniform(last - i));
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
H A Dhello-world.cs1 Hello <?cs var:name.first ?> <?cs var:name.last ?>.
/external/syslinux/gpxe/src/include/
H A Dstdarg.h7 #define va_start( ap, last ) __builtin_va_start ( ap, last )
/external/valgrind/none/tests/amd64-linux/
H A Dmap_32bits.stderr.exp2 last mmap ok: 0x........
H A Dmap_32bits.c10 void *last; local
26 fprintf(stderr, "last mmap ok: %p\n", last);
29 last = res;
/external/python/cpython2/Doc/includes/
H A Dnoddy2.c7 PyObject *last; /* last name */ member in struct:__anon19158
15 Py_XDECREF(self->last);
33 self->last = PyString_FromString("");
34 if (self->last == NULL)
49 PyObject *first=NULL, *last=NULL, *tmp; local
51 static char *kwlist[] = {"first", "last", "number", NULL};
54 &first, &last,
65 if (last) {
66 tmp = self->last;
[all...]
/external/python/cpython3/Doc/includes/
H A Dnoddy2.c7 PyObject *last; /* last name */ member in struct:__anon19711
15 Py_XDECREF(self->last);
32 self->last = PyUnicode_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/skia/src/core/
H A DSkEdgeBuilder.cpp21 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(const SkEdge* edge, SkEdge* last) { argument
22 if (last->fCurveCount || last->fDX || edge->fX != last->fX) {
25 if (edge->fWinding == last->fWinding) {
26 if (edge->fLastY + 1 == last->fFirstY) {
27 last->fFirstY = edge->fFirstY;
30 if (edge->fFirstY == last->fLastY + 1) {
31 last->fLastY = edge->fLastY;
36 if (edge->fFirstY == last
66 CombineVertical( const SkAnalyticEdge* edge, SkAnalyticEdge* last) argument
[all...]
/external/skqp/src/core/
H A DSkEdgeBuilder.cpp21 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(const SkEdge* edge, SkEdge* last) { argument
22 if (last->fCurveCount || last->fDX || edge->fX != last->fX) {
25 if (edge->fWinding == last->fWinding) {
26 if (edge->fLastY + 1 == last->fFirstY) {
27 last->fFirstY = edge->fFirstY;
30 if (edge->fFirstY == last->fLastY + 1) {
31 last->fLastY = edge->fLastY;
36 if (edge->fFirstY == last
66 CombineVertical( const SkAnalyticEdge* edge, SkAnalyticEdge* last) argument
[all...]
/external/google-breakpad/src/common/linux/
H A Dlinux_libc_support_unittest.cc171 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
196 const char* last; local
[all...]
/external/protobuf/csharp/src/Google.Protobuf/
H A DByteArray.cs71 for (int first = 0, last = bytes.Length - 1; first < last; first++, last--)
74 bytes[first] = bytes[last];
75 bytes[last] = temp;
/external/syslinux/com32/cmenu/libmenu/
H A Dtui.c34 char *last; // The current last char of string local
53 last = str;
54 while (*last) {
55 last++;
89 p = last;
112 if (p < last)
133 if (last > str)
134 last--;
146 while (q <= last) {
[all...]
/external/libmojo/mojo/edk/system/
H A Dawakable_list.cc24 // Instead of deleting elements in-place, swap them with the last element and
26 auto last = awakables_.end(); local
27 for (AwakeInfoList::iterator it = awakables_.begin(); it != last;) {
35 --last;
36 std::swap(*it, *last);
41 awakables_.erase(last, awakables_.end());
63 auto last = awakables_.end(); local
64 for (AwakeInfoList::iterator it = awakables_.begin(); it != last;) {
66 --last;
67 std::swap(*it, *last);
[all...]
/external/curl/tests/unit/
H A Dunit1308.c46 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/
H A Dlibxt_NFQUEUE.c37 " --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
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/
H A DTargetMonitorRunListener.java87 int last = stackTraceElements.length - 1;
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));
/external/pdfium/fxbarcode/
H A DBC_Utils.cpp13 uint32_t last,
16 if (first > last || count <= 0) {
19 dst.Delete(first, last - first);
11 BC_FX_ByteString_Replace(ByteString& dst, uint32_t first, uint32_t last, int32_t count, char c) argument

Completed in 8060 milliseconds

1234567891011>>