HomeSort by relevance Sort by last modified time
    Searched full:last (Results 301 - 325 of 22121) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_syntax.py 7 Traceback (most recent call last):
31 Traceback (most recent call last):
36 Traceback (most recent call last):
45 Traceback (most recent call last):
50 Traceback (most recent call last):
55 Traceback (most recent call last):
60 Traceback (most recent call last):
65 Traceback (most recent call last):
70 Traceback (most recent call last):
75 Traceback (most recent call last)
    [all...]
  /external/autotest/client/profilers/cpistat/
cpistat 55 last = {} variable
59 last[e] = {}
63 last[e][c] = 0
71 delta[e][c] = count - last[e][c]
72 last[e][c] = count
  /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/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())
opt_redundant_jumps.cpp 61 /* If the last instruction in both branches is a 'break' or a 'continue',
102 /* If the last instruction of a loop body is a 'continue', remove it.
104 ir_instruction *const last = local
107 if (last && (last->ir_type == ir_type_loop_jump)
108 && (((ir_loop_jump *) last)->mode == ir_loop_jump::jump_continue)) {
109 last->remove();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/tokens/
DirectiveTokenTest.java 29 Mark mark = new Mark("test1", 0, 0, 0, "*The first line.\nThe last line.", 0);
35 Mark mark = new Mark("test1", 0, 0, 0, "*The first line.\nThe last line.", 0);
47 Mark mark = new Mark("test1", 0, 0, 0, "*The first line.\nThe last line.", 0);
56 Mark mark = new Mark("test1", 0, 0, 0, "*The first line.\nThe last line.", 0);
65 Mark mark = new Mark("test1", 0, 0, 0, "*The first line.\nThe last line.", 0);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_FillVLDBuffer.c 49 * [in] last status of the last flag
66 OMX_U8 last,
87 /* If last is 1, fill the remaining elments of the buffer with zeros */
88 if (last == 1)
armVCM4P2_CheckVLCEscapeMode.c 43 * last combinations.
53 * [in] maxStoreRun Max store possible (considering last and inter/intra)
57 * (considering last and inter/intra status)
60 * (considering last and inter/intra status)
87 /* Check for a valid entry with run, level and Last combination
111 /* Check for a valid entry with run, levelPlus and Last combination
136 /* Check for a valid entry with runPlus, level and Last combination
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
msq.h 41 __time_t msg_stime; /* time of last msgsnd command */
45 __time_t msg_rtime; /* time of last msgrcv command */
49 __time_t msg_ctime; /* time of last change */
56 __pid_t msg_lspid; /* pid of last msgsnd() */
57 __pid_t msg_lrpid; /* pid of last msgrcv() */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
msq.h 41 __time_t msg_stime; /* time of last msgsnd command */
43 __time_t msg_rtime; /* time of last msgrcv command */
45 __time_t msg_ctime; /* time of last change */
50 __pid_t msg_lspid; /* pid of last msgsnd() */
51 __pid_t msg_lrpid; /* pid of last msgrcv() */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
msq.h 41 __time_t msg_stime; /* time of last msgsnd command */
45 __time_t msg_rtime; /* time of last msgrcv command */
49 __time_t msg_ctime; /* time of last change */
56 __pid_t msg_lspid; /* pid of last msgsnd() */
57 __pid_t msg_lrpid; /* pid of last msgrcv() */
  /prebuilts/go/darwin-x86/src/cmd/vet/
rangeloop.go 8 instances where the defer or go statement is the last statement in the loop
47 var last *ast.CallExpr
50 last = s.Call
52 last = s.Call
56 lit, ok := last.Fun.(*ast.FuncLit)
  /prebuilts/go/linux-x86/src/cmd/vet/
rangeloop.go 8 instances where the defer or go statement is the last statement in the loop
47 var last *ast.CallExpr
50 last = s.Call
52 last = s.Call
56 lit, ok := last.Fun.(*ast.FuncLit)
  /external/selinux/libselinux/utils/
avcstat.c 97 struct avc_cache_stats tot, rel, last; local
105 memset(&last, 0, sizeof(last));
211 rel.lookups = tot.lookups - last.lookups;
212 rel.hits = tot.hits - last.hits;
213 rel.misses = tot.misses - last.misses;
214 rel.allocations = tot.allocations - last.allocations;
215 rel.reclaims = tot.reclaims - last.reclaims;
216 rel.frees = tot.frees - last.frees;
225 memcpy(&last, &tot, sizeof(last))
    [all...]
  /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/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);
minmax_element_comp.pass.cpp 15 // minmax_element(Iter first, Iter last, Compare comp);
25 test(Iter first, Iter last)
29 std::pair<Iter, Iter> p = std::minmax_element(first, last, comp);
30 if (first != last)
32 for (Iter j = first; j != last; ++j)
40 assert(p.first == last);
41 assert(p.second == last);
  /external/libvpx/libvpx/vp8/common/
onyxc_int.h 96 FRAME_TYPE last_frame_type; /* Save last frame's frame type for motion search. */
127 MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */
128 MODE_INFO *prev_mi; /* 'mi' from last frame (points into prev_mip) */
130 MODE_INFO *show_frame_mi; /* MODE_INFO for the last decoded frame
144 int copy_buffer_to_gf; /* 0 none, 1 Last to GF, 2 ARF to GF */
145 int copy_buffer_to_arf; /* 0 none, 1 Last to ARF, 2 GF to ARF */
155 FRAME_CONTEXT lfc; /* last frame entropy */
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
PushObserver.java 52 * The response headers corresponding to a pushed request. When {@code last}
57 * @param last when true, there is no response data.
59 boolean onHeaders(int streamId, List<Header> responseHeaders, boolean last);
68 * @param last when true, there are no data frames to follow.
70 boolean onData(int streamId, BufferedSource source, int byteCount, boolean last)
82 @Override public boolean onHeaders(int streamId, List<Header> responseHeaders, boolean last) {
87 boolean last) throws IOException {
  /external/selinux/checkpolicy/
queue.c 146 queue_node_ptr_t p, last, temp; local
152 last = NULL;
157 if (last) {
158 last->next = p->next;
159 if (last->next == NULL)
160 q->tail = last;
172 last = p;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_DecodeVLCZigzag_Inter_s.s 86 IMPORT armVCM4P2_InterVlcL0L1 ;// Contains optimized and packed VLC Tables for both Last =1 and last=0
87 ;// Packed in Run:Level:Last format
88 IMPORT armVCM4P2_InterL0L1LMAX ;// Contains LMAX table entries with both Last=0 and Last=1
89 IMPORT armVCM4P2_InterL0L1RMAX ;// Contains RMAX table entries with both Last=0 and Last=1
omxVCM4P2_DecodeVLCZigzag_IntraACVLC_s.s 86 IMPORT armVCM4P2_IntraVlcL0L1 ;// Contains optimized and packed VLC Tables for both Last =1 and last=0
87 ;// Packed in Run:Level:Last format
88 IMPORT armVCM4P2_IntraL0L1LMAX ;// Contains LMAX table entries with both Last=0 and Last=1
89 IMPORT armVCM4P2_IntraL0L1RMAX ;// Contains RMAX table entries with both Last=0 and Last=1
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodeVLCZigzag_Inter_s.s 86 IMPORT armVCM4P2_InterVlcL0L1 ;// Contains optimized and packed VLC Tables for both Last =1 and last=0
87 ;// Packed in Run:Level:Last format
88 IMPORT armVCM4P2_InterL0L1LMAX ;// Contains LMAX table entries with both Last=0 and Last=1
89 IMPORT armVCM4P2_InterL0L1RMAX ;// Contains RMAX table entries with both Last=0 and Last=1
omxVCM4P2_DecodeVLCZigzag_IntraACVLC_s.s 86 IMPORT armVCM4P2_IntraVlcL0L1 ;// Contains optimized and packed VLC Tables for both Last =1 and last=0
87 ;// Packed in Run:Level:Last format
88 IMPORT armVCM4P2_IntraL0L1LMAX ;// Contains LMAX table entries with both Last=0 and Last=1
89 IMPORT armVCM4P2_IntraL0L1RMAX ;// Contains RMAX table entries with both Last=0 and Last=1
  /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);

Completed in 900 milliseconds

<<11121314151617181920>>