/prebuilts/go/linux-x86/doc/play/ |
solitaire.go | 74 // >= 0, that last peg must be in the center position. 76 // each move in a backward fashion (i.e., the last 80 var last, n int 98 last = pos 103 if n == 1 && (center < 0 || last == center) {
|
/prebuilts/go/linux-x86/src/cmd/pprof/internal/symbolz/ |
symbolz.go | 100 if last := strings.LastIndex(url.Path, "/"); last != -1 { 101 if strings.HasSuffix(url.Path[:last], "pprof") { 102 url.Path = url.Path[:last] + "/symbol" 104 url.Path = url.Path[:last] + "/symbolz"
|
/prebuilts/go/linux-x86/src/go/scanner/ |
errors.go | 80 var last token.Position // initial last.Line is != any legal error line 83 if e.Pos.Filename != last.Filename || e.Pos.Line != last.Line { 84 last = e.Pos
|
/prebuilts/go/linux-x86/test/ |
solitaire.go | 76 // at the end; if center is >= 0, that last peg must be in the center position. 78 // fashion (i.e., the last board position is printed first, all the way back to 81 var last, n int 99 last = pos 104 if n == 1 && (center < 0 || last == center) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
genericpath.py | 53 """Return the last modification time of a file, reported by os.stat().""" 58 """Return the last access time of a file, reported by os.stat().""" 79 # The extension is everything starting at the last dot in the last 88 Extension is everything from the last dot to the end, ignoring
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
genericpath.py | 53 """Return the last modification time of a file, reported by os.stat().""" 58 """Return the last access time of a file, reported by os.stat().""" 79 # The extension is everything starting at the last dot in the last 88 Extension is everything from the last dot to the end, ignoring
|
/system/core/logcat/tests/ |
logcat_benchmark.cpp | 77 } last(NULL); 89 if (!last.valid()) { 92 last.init(buffer); 95 if (next < last) { 105 last.init(buffer);
|
/external/wpa_supplicant_8/src/utils/ |
edit.c | 178 struct edit_history *h, *match = NULL, *last = NULL; local 189 last = h; 200 if (count >= HISTORY_MAX && last) { 201 dl_list_del(&last->list); 202 os_free(last); 561 static enum edit_key_code esc_seq_to_key1_no(char last) 563 switch (last) { 578 static enum edit_key_code esc_seq_to_key1_shift(char last) 580 switch (last) { 595 static enum edit_key_code esc_seq_to_key1_alt(char last) 728 char last, *pos; local [all...] |
/libcore/ojluni/src/main/java/java/text/ |
BreakIterator.java | 146 * int end = boundary.last(); 167 * Print last element: 171 * int end = boundary.last(); 195 * int last = wb.following(pos); 198 * for (int p = last; p < current; p++) { 200 * return last; 202 * last = current; 249 * and following(int) when either the first or last text boundary has been 263 * Returns the last boundary. The iterator's current position is set 264 * to the last text boundary 268 public abstract int last(); method in class:BreakIterator [all...] |
/packages/experimental/procstatlog/ |
procstatreport.py | 178 last = last_state.get("/proc/stat:cpu", "").split() 180 if last and next: 181 stime = sum([int(next[x]) - int(last[x]) for x in [2, 5, 6]]) 182 utime = sum([int(next[x]) - int(last[x]) for x in [0, 1]]) 183 idle = sum([int(next[x]) - int(last[x]) for x in [3, 4]]) 227 last = int(last_state.get(key, -1)) 229 if last != -1 and next != -1: 231 total_time += next - last 232 total_cycles += (next - last) * speed 263 last = int(last_state.get("/proc/stat:ctxt", -1) [all...] |
/development/apps/Development/src/com/android/development/ |
MediaScannerActivity.java | 204 * and last name. 236 String last = getRandomWord(3); 239 if (!last.startsWith("Di")) { 240 last = "di " + last; 244 last = "van " + last; 247 last = "de " + last; 250 return first + " " + last; [all...] |
/external/harfbuzz_ng/src/ |
gen-indic-table.py | 162 last = -100000 variable 169 if u <= last: 179 if start != last + 1: 180 if start - last <= 1+16*3: 181 print_block (None, last+1, start-1, data) 182 last = start-1 variable 184 if last >= 0: 185 ends.append (last + 1) 193 last = end variable 194 ends.append (last + 1 [all...] |
/external/selinux/libsepol/src/ |
hashtab.c | 108 hashtab_ptr_t cur, last; local 114 last = NULL; 117 last = cur; 124 if (last == NULL) 127 last->next = cur->next; 254 hashtab_ptr_t last, cur, temp; local 260 last = NULL; 265 if (last) { 266 last->next = cur->next; 278 last = cur [all...] |
/external/wpa_supplicant_8/src/crypto/ |
aes-gcm.c | 124 /* Add zero padded last block */ 125 size_t last = x + xlen - xpos; local 126 os_memcpy(tmp, xpos, last); 127 os_memset(tmp + last, 0, sizeof(tmp) - last); 145 size_t i, n, last; local 165 last = x + xlen - xpos; 166 if (last) { 167 /* Last, partial block */ 169 for (i = 0; i < last; i++ [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
IconNormalizer.java | 105 // the first and the last non-transparent pixel. Set those values to mLeftBorder and 112 // first and last position for any row. 183 * @param bottomY the last Y position (inclusive) with a valid value. 192 int last = -1; // Last valid y coordinate which didn't have a missing value local 205 float currentAngle = (xCordinates[i] - xCordinates[last]) / (i - last); 206 start = last; 220 // Reset from last check 227 last = i [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_genexps.py | 44 Traceback (most recent call last): 52 Traceback (most recent call last): 81 Traceback (most recent call last): 88 Traceback (most recent call last): 109 Traceback (most recent call last): 138 Traceback (most recent call last): 144 Traceback (most recent call last): 189 Traceback (most recent call last): 202 Traceback (most recent call last): 209 Traceback (most recent call last) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_genexps.py | 44 Traceback (most recent call last): 52 Traceback (most recent call last): 81 Traceback (most recent call last): 88 Traceback (most recent call last): 109 Traceback (most recent call last): 138 Traceback (most recent call last): 144 Traceback (most recent call last): 189 Traceback (most recent call last): 202 Traceback (most recent call last): 209 Traceback (most recent call last) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_genexps.py | 44 Traceback (most recent call last): 52 Traceback (most recent call last): 81 Traceback (most recent call last): 88 Traceback (most recent call last): 109 Traceback (most recent call last): 138 Traceback (most recent call last): 144 Traceback (most recent call last): 189 Traceback (most recent call last): 202 Traceback (most recent call last): 209 Traceback (most recent call last) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_genexps.py | 44 Traceback (most recent call last): 52 Traceback (most recent call last): 81 Traceback (most recent call last): 88 Traceback (most recent call last): 109 Traceback (most recent call last): 138 Traceback (most recent call last): 144 Traceback (most recent call last): 189 Traceback (most recent call last): 202 Traceback (most recent call last): 209 Traceback (most recent call last) [all...] |
/external/zlib/src/examples/ |
gun.c | 47 encountered in an input file, it is the last stream in that file. 156 last = have ? (have--, (int)(*next++)) : -1) 203 int last; /* last byte read by NEXT(), or -1 if EOF */ local 212 unsigned end; /* last valid entry in prefix/suffix tables */ 215 unsigned final; /* last character written for previous code */ 227 if (last == -1) 251 final = prev = (unsigned)last; /* low 8 bits of code */ 254 if (last & 1) { /* code must be < 256 */ 258 rem = (unsigned)last >> 1; /* remaining 7 bits * 385 int ret, first, last; local [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/api/ |
armVC.h | 304 * [in] last status of the last flag 321 OMX_U8 last, 331 * last combinations. 344 * [in/out] pLast pointer to last status flag 346 * will be equal to 1: last == 0 351 * will be equal to 1: last == 1 356 * armVCM4P2_Huff_Tables_VLC.c for last == 0 357 * [in] pVlcTableL0 VLC table for last == 0 359 * armVCM4P2_Huff_Tables_VLC.c for last == [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/api/ |
armVC.h | 304 * [in] last status of the last flag 321 OMX_U8 last, 331 * last combinations. 344 * [in/out] pLast pointer to last status flag 346 * will be equal to 1: last == 0 351 * will be equal to 1: last == 1 356 * armVCM4P2_Huff_Tables_VLC.c for last == 0 357 * [in] pVlcTableL0 VLC table for last == 0 359 * armVCM4P2_Huff_Tables_VLC.c for last == [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/api/ |
armVC.h | 304 * [in] last status of the last flag 321 OMX_U8 last, 331 * last combinations. 344 * [in/out] pLast pointer to last status flag 346 * will be equal to 1: last == 0 351 * will be equal to 1: last == 1 356 * armVCM4P2_Huff_Tables_VLC.c for last == 0 357 * [in] pVlcTableL0 VLC table for last == 0 359 * armVCM4P2_Huff_Tables_VLC.c for last == [all...] |
/external/e2fsprogs/lib/blkid/ |
devname.c | 404 int which = 0, last = 0; local 428 last = which; 466 * If last was a whole disk and we just found a partition 470 if (lens[last] && !strncmp(ptnames[last], ptname, lens[last])) { 477 if (tmp->bid_devno == devs[last]) { 486 lens[last] = 0; 489 * If last was not checked because it looked like a whole-disk 491 * check last as well [all...] |
/build/tools/releasetools/ |
rangelib.py | 76 last = -1 83 if last <= s <= e: 84 last = e 91 if last <= s: 92 last = s+1 104 last = None 106 if i == last: 107 last = None 109 if last is not None: 110 yield last [all...] |