HomeSort by relevance Sort by last modified time
    Searched defs:rest (Results 26 - 50 of 297) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/common_audio/signal_processing/
min_max_operations_neon.c 24 size_t rest = length & 7; local
25 const int16_t* p_end = vector + length - rest;
  /frameworks/base/core/java/com/android/internal/util/
LineBreakBufferedWriter.java 149 int rest = bufferSize - bufferIndex; local
150 appendToBuffer(buf, off, rest);
153 off += rest;
154 len -= rest;
203 int rest = bufferSize - bufferIndex; local
204 appendToBuffer(s, off, rest);
207 off += rest;
208 len -= rest;
275 int rest = bufferIndex - i; local
276 if (rest > 0)
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
IntegralToString.java 371 int rest = ((int) ((n - midDigit) >>> 1)) * 0xCCCCCCCD; local
372 cursor = intIntoCharArray(buf, cursor, rest);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChainDirectory.java 99 final int rest = (int) (trueSize - toWrite); local
100 final ByteBuffer fill = ByteBuffer.allocate(rest);
  /external/boringssl/src/crypto/bio/
pair.c 358 size_t rest; local
391 rest = bio_zero_copy_get_write_buf(b, &dummy_write_buf, &dummy_write_offset);
393 if (bytes_written > rest) {
407 size_t rest; local
451 rest = size;
453 assert(rest > 0);
458 assert(rest <= peer_b->len);
459 if (peer_b->offset + rest <= peer_b->size) {
460 chunk = rest;
482 assert(chunk == rest);
493 size_t rest; local
    [all...]
  /external/curl/src/
tool_setopt.c 282 long rest = lval; /* bits not handled yet */ local
287 if((nv->value & ~ rest) == 0) {
288 /* all value flags contained in rest */
289 rest &= ~ nv->value; /* remove bits handled here */
291 preamble, nv->name, rest ? " |" : ");");
292 if(!rest)
301 if(rest)
302 CODE2("%s%ldL);", preamble, rest);
325 unsigned long rest = (unsigned long)lval; local
330 if((nv->value & ~ rest) == 0)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
IntTrieBuilder.java 25 * values while the rest of the Unicode data is unused in the application or
438 int rest = limit & MASK_; local
481 if (rest > 0) {
487 fillBlock(block, 0, rest, value, overwrite);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
FilteredNormalizer2.java 276 CharSequence rest=second.subSequence(prefixLimit, second.length()); local
278 normalize(rest, first, UnicodeSet.SpanCondition.NOT_CONTAINED);
280 first.append(rest);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
IntTrieBuilder.java 24 * values while the rest of the Unicode data is unused in the application or
436 int rest = limit & MASK_; local
479 if (rest > 0) {
485 fillBlock(block, 0, rest, value, overwrite);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
FilteredNormalizer2.java 290 CharSequence rest=second.subSequence(prefixLimit, second.length()); local
292 normalize(rest, first, UnicodeSet.SpanCondition.NOT_CONTAINED);
294 first.append(rest);
  /external/ltrace/sysdeps/linux-gnu/ia64/
fetch.c 332 /* The rest is passed in registers and on stack. */
333 size_t rest = hfa_count * hfa_sz; local
334 return copy_aggregate_part(ctx, proc, buf, rest);
  /external/toybox/toys/posix/
find.c 112 int pos = aa->curly, rest = aa->arglen - aa->curly; local
118 rest = aa->arglen - aa->curly - 1;
119 memcpy(newargs+pos, aa->argstart+aa->curly+1, sizeof(char *)*rest);
120 newargs[pos+rest] = 0;
  /external/v8/src/
fast-dtoa.cc 37 // * rest = (too_high - buffer * 10^kappa).f() * unit
47 uint64_t rest,
69 // . . . . rest
120 // Conceptually rest ~= too_high - buffer
123 DCHECK(rest <= unsafe_interval);
124 while (rest < small_distance && // Negated condition 1
125 unsafe_interval - rest >= ten_kappa && // Negated condition 2
126 (rest + ten_kappa < small_distance || // buffer{-1} > w_high
127 small_distance - rest >= rest + ten_kappa - small_distance))
418 uint64_t rest = local
533 uint64_t rest = local
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
ModelAnalyzer.java 163 final String rest; local
166 rest = null;
169 rest = className.substring(dotIndex); // includes dot
174 result = rest == null ? expandedQualifier : expandedQualifier + rest;
  /frameworks/rs/api/
GenerateStubsWhiteList.cpp 258 string rest, compressedRest; local
259 if (!mangleType(vectorSize, tokens, previousManglings, &rest, &compressedRest)) {
262 *mangling = delta + rest;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
BodyDescriptor.java 156 String rest; local
159 rest = null;
162 rest = headerValue.substring(main.length() + 1);
166 if (rest != null) {
167 char[] chars = rest.toCharArray();
  /packages/services/Telephony/src/org/apache/james/mime4j/
BodyDescriptor.java 156 String rest; local
159 rest = null;
162 rest = headerValue.substring(main.length() + 1);
166 if (rest != null) {
167 char[] chars = rest.toCharArray();
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 365 const char *rest; /* start of rest of string */ local
366 const char *tail; /* string unmatched by rest of RE */
423 rest = slow(m, sp, stp, ss, es);
424 assert(rest != NULL); /* it did match */
425 /* could the rest match the rest? */
426 tail = slow(m, rest, stop, es, stopst);
430 stp = rest - 1;
436 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]
  /build/kati/
dep.cc 133 const StringPiece rest = StringPiece(output.str()).substr(1); local
134 size_t dot_index = rest.find('.');
138 rest.substr(dot_index+1).find('.') != string::npos) {
384 const StringPiece rest = StringPiece(output.str()).substr(1); local
385 size_t dot_index = rest.find('.');
387 StringPiece input_suffix = rest.substr(0, dot_index);
388 StringPiece output_suffix = rest.substr(dot_index+1);
expr.cc 557 StringPiece rest = s.substr(b, i-b); local
559 rest = TrimRightSpace(rest);
560 if (!rest.empty())
561 r->AddValue(new Literal(rest));
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
JoinerTest.java 198 Object[] rest = new Integer[num]; local
200 rest[i] = partsArray[i + 2];
203 assertEquals(expected, joiner.join(partsArray[0], partsArray[1], rest));
206 joiner.appendTo(sb3, partsArray[0], partsArray[1], rest);
  /external/guava/guava-tests/test/com/google/common/base/
JoinerTest.java 200 Object[] rest = new Integer[num]; local
202 rest[i] = partsArray[i + 2];
205 assertEquals(expected, joiner.join(partsArray[0], partsArray[1], rest));
208 joiner.appendTo(sb3, partsArray[0], partsArray[1], rest);
  /external/icu/icu4c/source/common/
unisetspan.cpp 647 int32_t pos=spanLength, rest=length-pos; local
671 if(inc>rest) {
676 if(inc==rest) {
710 if(inc>rest || overlap<maxOverlap) {
730 rest-=maxInc;
731 if(rest==0) {
755 spanLength=spanSet.span(s+pos, rest, USET_SPAN_CONTAINED);
756 if( spanLength==rest || // Reached the end of the string, or
762 rest-=spanLength;
768 spanLength=spanOne(spanSet, s+pos, rest);
969 int32_t pos=spanLength, rest=length-pos; local
1340 int32_t pos=0, rest=length; local
1424 int32_t pos=0, rest=length; local
    [all...]
utrie.cpp 289 int32_t block, rest, repeatBlock; local
324 rest=limit&UTRIE_MASK;
361 if(rest>0) {
368 utrie_fillBlock(trie->data+block, 0, rest, value, initialValue, overwrite);
    [all...]
  /external/pdfium/third_party/agg23/
agg_array.h 391 unsigned rest = block_size - (m_size & block_mask); local
393 if(num_elements <= rest) {
398 m_size += rest;

Completed in 2305 milliseconds

12 3 4 5 6 7 8 91011>>