/external/svox/pico/lib/ |
picodata.c | 700 picoos_int16 * restdur /* in/out, rest in ms */ 704 picoos_int32 fact, rest; local 706 /* calculate rest and factor in number of frames (in PICODATA_PICODATA_PRECISION) */ 707 rest = (*restdur) << (PICODATA_PRECISION - frame_duration_exp); 711 rest += fact * inout[i]; 712 /* instead of rounding, we carry the rest to the next state */ 713 inout[i] = rest >> PICODATA_PRECISION; 714 rest -= inout[i] << PICODATA_PRECISION; 716 (*restdur) = rest >> (PICODATA_PRECISION - frame_duration_exp); 726 picoos_int16 * restdur /* in/out, rest in ms * 730 picoos_int32 fact, rest, out, weighted_sum; local [all...] |
/packages/apps/Email/src/com/android/email/mail/store/imap/ |
ImapResponseParser.java | 303 String rest = readUntilEol(); local 304 if (!TextUtils.isEmpty(rest)) { 305 // The rest is free-form text. 306 responseToDestroy.add(new ImapSimpleString(rest));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_LWPCookieJar.py | 121 rest = {} 138 rest[k] = v 158 rest)
|
binhex.py | 413 rest = self._read(1+4+4+2+4+4) 416 type = rest[1:5] 417 creator = rest[5:9] 418 flags = struct.unpack('>h', rest[9:11])[0] 419 self.dlen = struct.unpack('>l', rest[11:15])[0] 420 self.rlen = struct.unpack('>l', rest[15:19])[0]
|
urlparse.py | 165 return url[start:delim], url[delim:] # return (domain, rest) 204 rest = url[i+1:] 205 if not rest or any(c not in '0123456789' for c in rest): 207 scheme, url = url[:i].lower(), rest
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_LWPCookieJar.py | 121 rest = {} 138 rest[k] = v 158 rest)
|
binhex.py | 413 rest = self._read(1+4+4+2+4+4) 416 type = rest[1:5] 417 creator = rest[5:9] 418 flags = struct.unpack('>h', rest[9:11])[0] 419 self.dlen = struct.unpack('>l', rest[11:15])[0] 420 self.rlen = struct.unpack('>l', rest[15:19])[0]
|
urlparse.py | 165 return url[start:delim], url[delim:] # return (domain, rest) 204 rest = url[i+1:] 205 if not rest or any(c not in '0123456789' for c in rest): 207 scheme, url = url[:i].lower(), rest
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 172 def v0(*rest): pass 173 def v1(a, *rest): pass 174 def v2(a, b, *rest): pass 175 def v3(a, (b, c), *rest): return a, b, c, rest 204 self.assertEquals(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c')) 206 self.assertEquals(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c')) 240 def d01v(a=1, *rest): pass 247 def d11v(a, b=1, *rest): pass 251 def d21v(a, b, c=1, *rest): pas [all...] |
py3_test_grammar.py | 172 def v0(*rest): pass 173 def v1(a, *rest): pass 174 def v2(a, b, *rest): pass 228 def d01v(a=1, *rest): pass 235 def d11v(a, b=1, *rest): pass 239 def d21v(a, b, c=1, *rest): pass 245 def d02v(a=1, b=2, *rest): pass 252 def d12v(a, b=1, c=2, *rest): pass 260 def d22v(a, b, c=1, d=2, *rest): pass
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 172 def v0(*rest): pass 173 def v1(a, *rest): pass 174 def v2(a, b, *rest): pass 175 def v3(a, (b, c), *rest): return a, b, c, rest 204 self.assertEquals(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c')) 206 self.assertEquals(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c')) 240 def d01v(a=1, *rest): pass 247 def d11v(a, b=1, *rest): pass 251 def d21v(a, b, c=1, *rest): pas [all...] |
py3_test_grammar.py | 172 def v0(*rest): pass 173 def v1(a, *rest): pass 174 def v2(a, b, *rest): pass 228 def d01v(a=1, *rest): pass 235 def d11v(a, b=1, *rest): pass 239 def d21v(a, b, c=1, *rest): pass 245 def d02v(a=1, b=2, *rest): pass 252 def d12v(a, b=1, c=2, *rest): pass 260 def d22v(a, b, c=1, d=2, *rest): pass
|
/external/grub/stage2/ |
fsys_xfs.c | 544 char *rest, *name, ch; local 591 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++); 592 *rest = 0; 608 *(dirname = rest) = ch; 617 *rest = ch;
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
AST.stg | 185 <rest(alts):{a | el<rewriteAltRest(a)>}; anchor, separator="\n\n"> 429 //<else><if (!rest(args))>self._adaptor.createFromType(<tokenType>, <first(args)>) 430 //<else><if (!rest(rest(args)))>self._adaptor.createFromToken(<tokenType>, <first(args)>, <first(rest(args))>) 443 <else><if (!rest(args))>self._adaptor.createFromToken(<token>, <first(args)>) 444 <else><if (!rest(rest(args)))>self._adaptor.createFromToken(<token>, <first(args)>, <first(rest(args))>)
|
/external/libffi/src/powerpc/ |
ffi.c | 426 we use GPR registers, then continues at rest. */ 429 valp rest; local 458 rest.ul = stack + 6 + NUM_GPR_ARG_REGISTERS64; 484 next_arg.ul = rest.ul; 495 next_arg.ul = rest.ul; 507 next_arg.ul = rest.ul; 514 next_arg.ul = rest.ul; 529 memcpy (rest.c, *p_argv.c + first, (*ptr)->size - first); 530 next_arg.c = rest.c + words * 8 - first; 544 next_arg.ul = rest.ul [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/ |
config.py | 418 rest = value 419 m = self.WORD_PATTERN.match(rest) 423 rest = rest[m.end():] 425 #print d, rest 426 while rest: 427 m = self.DOT_PATTERN.match(rest) 431 m = self.INDEX_PATTERN.match(rest) 443 rest = rest[m.end(): [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/ |
config.py | 418 rest = value 419 m = self.WORD_PATTERN.match(rest) 423 rest = rest[m.end():] 425 #print d, rest 426 while rest: 427 m = self.DOT_PATTERN.match(rest) 431 m = self.INDEX_PATTERN.match(rest) 443 rest = rest[m.end(): [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
stun.cc | 168 size_t rest = buf->Length() - length_; local 169 while (buf->Length() > rest) { 183 if (buf->Length() != rest) { 185 LOG(LERROR) << "wrong message length (" << rest << " != " << buf->Length()
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2564.js | 74 // The rest are poisoned by the first strict mode function. 105 // The rest are poisoned by the first strict mode function.
|
/external/guava/guava/src/com/google/common/collect/ |
Ordering.java | 151 * @param remainingValuesInOrder the rest of the values that the returned 621 * @param a value to compare, returned if greater than or equal to the rest. 624 * @param rest values to compare 629 @Nullable E a, @Nullable E b, @Nullable E c, E... rest) { 632 for (E r : rest) { 698 * @param a value to compare, returned if less than or equal to the rest. 701 * @param rest values to compare 706 @Nullable E a, @Nullable E b, @Nullable E c, E... rest) { 709 for (E r : rest) {
|
/external/v8/test/mjsunit/ |
array-shift.js | 57 // ... but keeps the rest as holes: 98 // ... but keeps the rest as holes:
|
/ndk/sources/host-tools/make-3.81/glob/ |
glob.c | 391 const char *rest; 414 rest after the closing brace. */ 426 rest = next; 427 while (*rest != '}') 429 rest = next_brace_sub (rest + 1); 430 if (rest == NULL) 441 rest_len = strlen (++rest) + 1; 465 mempcpy (mempcpy (alt_start, p, next - p), rest, rest_len); 468 memcpy (&alt_start[next - p], rest, rest_len) 390 const char *rest; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 168 def v0(*rest): pass 169 def v1(a, *rest): pass 170 def v2(a, b, *rest): pass 172 exec('def v3(a, (b, c), *rest): return a, b, c, rest') 201 self.assertEqual(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c')) 203 self.assertEqual(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c')) 237 def d01v(a=1, *rest): pass 244 def d11v(a, b=1, *rest): pass 248 def d21v(a, b, c=1, *rest): pas [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 168 def v0(*rest): pass 169 def v1(a, *rest): pass 170 def v2(a, b, *rest): pass 172 exec('def v3(a, (b, c), *rest): return a, b, c, rest') 201 self.assertEqual(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c')) 203 self.assertEqual(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c')) 237 def d01v(a=1, *rest): pass 244 def d11v(a, b=1, *rest): pass 248 def d21v(a, b, c=1, *rest): pas [all...] |
/external/chromium_org/v8/tools/ |
gen-postmortem-metadata.py | 334 rest = call[idx + 1: len(call) - 1]; 335 args = re.split('\s*,\s*', rest);
|