/external/speex/libspeex/ |
sb_celp.h | 53 int first; /**< First frame? */ member in struct:SBEncState 107 int first; member in struct:SBDecState
|
/external/tcpdump/ |
print-atalk.c | 542 static int first = 1; local 546 * if this is the first call, see if there's an AppleTalk 549 if (first && (first = 0, !ndo->ndo_nflag)
|
/external/v8/samples/ |
shell.cc | 152 bool first = true; local 155 if (first) { 156 first = false;
|
/external/v8/src/compiler/ |
move-optimizer.cc | 17 if (a.first.EqualsCanonicalized(b.first)) { 20 return a.first.CompareCanonicalized(b.first); 168 // all the moves in the first gap position, and none in the second/end gap 170 ParallelMove* first = local 177 (first != nullptr && (last == nullptr || last->empty()))); 181 // Smash first into prev_instr, killing left. 183 CompressMoves(pred_moves, first); 242 res.first->second++ [all...] |
/external/v8/src/ |
hashmap.h | 309 Key* first; member in struct:v8::TemplateHashMap::value_type
|
/external/v8/src/heap/ |
scavenger.cc | 328 HeapObject* first = local 331 *slot = first; 333 if (!heap->InNewSpace(first)) { 334 object->set_map_word(MapWord::FromForwardingAddress(first)); 338 MapWord first_word = first->map_word(); 347 Scavenger::ScavengeObjectSlow(slot, first);
|
/external/v8/src/js/ |
regexp.js | 136 // Calculate the substring of the first match before creating the result array 137 // to avoid an unnecessary write barrier storing the first result. 138 var first = %_SubString(STRING, start, end); variable 140 result[0] = first; 414 // last pair (after the first pair) of elements of the capture array even if 444 // The properties $1..$9 are the first nine capturing substrings of the last
|
/external/v8/test/cctest/ |
test-utils-arm64.cc | 268 Register first = NoReg; local 275 if (!first.IsValid()) { 276 // This is the first register we've hit, so construct the literal. 278 first = xn; 281 // loaded into the first register we hit. 282 __ Mov(xn, first); 291 FPRegister first = NoFPReg; local 295 if (!first.IsValid()) { 296 // This is the first register we've hit, so construct the literal. 298 first = dn [all...] |
/external/valgrind/coregrind/m_debuginfo/ |
tytypes.c | 344 Word first, last; local 384 found = VG_(lookupXA)( ents, &key, &first, &last ); 385 //found = VG_(lookupXA_UNBOXED)( ents, cuOff_to_find, &first, &last, 391 vg_assert(first == last); 392 res = (TyEnt*)VG_(indexXA)( ents, first ); 590 /* First, free up any fields in mallocville. */
|
/external/valgrind/memcheck/tests/ |
unit_oset.c | 265 // First a single oset, no pool allocator. 433 Addr first; member in struct:__anon26188 444 sprintf(buf, "<(%d) %lu..%lu (%d)>", b->b1, b->first, b->last, b->b2); 453 assert(elem->first <= elem->last); 454 if (key < elem->first) return -1; 469 OSet* oset = VG_(OSetGen_Create)(offsetof(Block, first), 485 vs[i]->first = i*10 + 1; 486 vs[i]->last = vs[i]->first + 2; 509 a = vs[i]->first + 0; assert( VG_(OSetGen_Contains)(oset, &a) ); 510 a = vs[i]->first + 1; assert( VG_(OSetGen_Contains)(oset, &a) ) [all...] |
/external/vixl/test/ |
test-utils-a64.cc | 300 Register first = NoReg; local 307 if (!first.IsValid()) { 308 // This is the first register we've hit, so construct the literal. 310 first = xn; 313 // loaded into the first register we hit. 314 __ Mov(xn, first); 323 FPRegister first = NoFPReg; local 327 if (!first.IsValid()) { 328 // This is the first register we've hit, so construct the literal. 330 first = dn [all...] |
/external/webrtc/talk/media/devices/ |
linuxdevicemanager.cc | 172 std::string::size_type first = s.find_first_not_of(drop); local 175 if (first == std::string::npos || last == std::string::npos) 178 return s.substr(first, last - first + 1);
|
/external/zlib/src/contrib/blast/ |
blast.c | 23 * 1.0 12 Feb 2003 - First version 53 int first; /* true to check distances (for first 4K) */ member in struct:state 118 * - The first code for the shortest length is all ones. Subsequent codes of 129 int first; /* first code of length len */ local 131 int index; /* index of first code of length len in symbol table */ 138 code = first = index = 0; 146 if (code < first + count) { /* if length len, return symbol */ 149 return h->symbol[index + (code - first)]; [all...] |
/external/zlib/src/contrib/puff/ |
puff.c | 34 * 1.0 10 Feb 2002 - First version 226 * - The first code for the shortest length is all zeros. Subsequent codes of 239 int first; /* first code of length len */ local 241 int index; /* index of first code of length len in symbol table */ 243 code = first = index = 0; 247 if (code - count < first) /* if length len, return symbol */ 248 return h->symbol[index + (code - first)]; 250 first += count; 251 first <<= 1 267 int first; \/* first code of length len *\/ local [all...] |
/external/zlib/src/examples/ |
gun.c | 7 1.0 16 Feb 2003 First version for testing of inflateBack() 159 the first 256 entries of prefix[] and suffix[] are never used, could 247 /* set up: get first 9-bit code, which is the first decompressed byte, but 261 outbuf[0] = (unsigned char)final; /* write first decompressed byte */ 366 left provide the first 0..7 bits of the next code, end is the last 385 int ret, first, last; local 398 first = 1; /* looking for first gzip header */ 408 ret = first ? Z_DATA_ERROR : Z_ERRNO [all...] |
/external/zlib/src/test/ |
infcover.c | 64 struct mem_item *first; /* pointer to first item in list, or NULL */ member in struct:mem_zone 99 item->next = zone->first; 100 zone->first = item; 125 next = zone->first; 128 zone->first = next->next; /* first one is it, remove from list */ 164 zone->first = NULL; 210 item = zone->first; 279 is the error code expected from the first inflate() call (the secon [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
c2_9pf.cpp | 46 Description: Changed template used to PV coding template. First attempt at 200 i.e. first or second pair. Where each pair contains 2 tracks. 202 First subframe: 203 first i0 : 0, 5, 10, 15, 20, 25, 30, 35. 209 first i0 : 0, 5, 10, 15, 20, 25, 30, 35. 215 first i0 : 0, 5, 10, 15, 20, 25, 30, 35. 221 first i0 : 0, 5, 10, 15, 20, 25, 30, 35. 891 Word16 i, j, k, track, first, index, _sign[NB_PULSE], indx, rsign; 916 first = pt[track]; 918 if (first == 0) 1000 Word16 first; local [all...] |
/frameworks/av/media/libstagefright/wifi-display/ |
VideoFormats.cpp | 488 bool first = true; local 517 if (first || score > bestScore) { 522 first = false; 527 if (first) {
|
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/ |
ParameterManagerWrapper.cpp | 161 char *first = strtok(valueName, ":"); local 163 ALOG_ASSERT((first != NULL) && (strlen(first) != 0) && 167 if (!convertTo<string, uint32_t>(first, index)) { 168 ALOGE("%s: Invalid index(%s) found", __FUNCTION__, first);
|
/frameworks/base/core/java/android/text/method/ |
LinkMovementMethod.java | 107 int first = layout.getLineStart(linetop); local 110 ClickableSpan[] candidates = buffer.getSpans(first, last, ClickableSpan.class); 126 if (selEnd < first)
|
/frameworks/base/tools/layoutlib/bridge/src/android/text/ |
StaticLayout_Delegate.java | 145 it.first();
|
/frameworks/base/tools/split-select/ |
Main.cpp | 80 bool first = true; local 88 if (!first) { 91 first = false; 241 // Skip over the first argument.
|
/frameworks/native/libs/binder/ |
BufferedTextOutput.cpp | 171 const char* first = txt; local 177 // Special cases for first data on a line. 196 vec.iov_base = (void*)first; 197 vec.iov_len = lastLine-first; 206 err = b->append(first, txt-first);
|
/frameworks/opt/bitmap/src/com/android/bitmap/ |
ContiguousFIFOAggregator.java | 32 * The task will be scheduled to run when its corresponding key becomes the first expected key 41 * the first expected key.</li> 42 * <li>Execute task <b>2</b> for key <b>B</b>. The first expected key is <b>A</b>, 46 * the first expected, then we remove key <b>A</b> from the list of keys that we expect.</li> 47 * <li>This causes key <b>B</b> to be the first expected key, and we see that we have previously 49 * <li>Key <b>C</b> is now the first expected key, but it has no task, 51 * cannot run until its corresponding key <b>Z</b> becomes the first expected key. This can 83 * important. Keys that are declared first are guaranteed to have their tasks run first. You 92 * @param callback the callback to notify when the key becomes the first expected key, or null 191 T first; local [all...] |
/frameworks/volley/src/main/java/com/android/volley/ |
VolleyLog.java | 88 // Walk up the stack looking for the first caller outside of VolleyLog. 111 /** Minimum duration from first marker to last in an marker log to warrant logging. */ 140 * the first and last markers is greater than {@link #MIN_DURATION_FOR_LOGGING_MS}. 170 /** Returns the time difference between the first and last events in this log. */ 176 long first = mMarkers.get(0).time; local 178 return last - first;
|