| /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/ |
| dec_amr.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 154 PSEUDO-CODE 208 When the code is written for a specific target processor the 307 PSEUDO-CODE 375 When the code is written for a specific target processor the 533 PSEUDO-CODE 562 Word16 code[L_SUBFR]; 709 * - decode algebraic code * 837 decode_2i40_9bits (subfrNr, i, index, code); 846 decode_2i40_11bits (i, index, code); 1360 Word16 code[L_SUBFR]; local [all...] |
| /packages/apps/Email/src/com/android/exchange/ |
| AbstractSyncService.java | 204 * repetitive code. 206 public void userLog(String string, int code, String string2) { 208 userLog(string + code + string2); 212 public void userLog(String string, int code) { 214 userLog(string + code);
|
| EasOutboxService.java | 142 int code = resp.getStatusLine().getStatusCode(); local 143 if (code == HttpStatus.SC_OK) { 150 userLog("Message sending failed, code: " + code); 157 if (isAuthError(code)) {
|
| /external/ppp/pppd/plugins/radius/ |
| sendserver.c | 53 /* Insert vendor code */ 263 auth->code = data->code; 266 if (data->code == PW_ACCOUNTING_REQUEST) 371 if ((recv_auth->code == PW_ACCESS_ACCEPT) || 372 (recv_auth->code == PW_PASSWORD_ACK) || 373 (recv_auth->code == PW_ACCOUNTING_RESPONSE)) 457 authentication request are ok. i looked at the code 463 if (auth->code == PW_ACCOUNTING_RESPONSE)
|
| /external/webkit/WebCore/platform/image-decoders/bmp/ |
| BMPImageReader.cpp | 8 * * Redistributions of source code must retain the above copyright 140 // Don't increment m_decodedOffset here, it just makes the code in 200 // other code relies on this value being correct. 469 // infinite loop in the counting code below. 575 const uint8_t code = m_data->data()[m_decodedOffset + 1]; local 576 if (((count != 0) || (code != 1)) && pastEndOfImage(0)) 581 switch (code) { 624 // |code| pixels specified as in BI_RGB, zero-padded at the end 630 if (!processNonRLEData(true, code)) { 650 m_data->data()[m_decodedOffset + 2], code, 0xff) [all...] |
| /dalvik/dx/src/com/android/dx/ssa/ |
| SsaMethod.java | 19 import com.android.dx.rop.code.BasicBlockList; 20 import com.android.dx.rop.code.PlainInsn; 21 import com.android.dx.rop.code.RegisterSpec; 22 import com.android.dx.rop.code.RegisterSpecList; 23 import com.android.dx.rop.code.RopMethod; 24 import com.android.dx.rop.code.Rops; 25 import com.android.dx.rop.code.SourcePosition; 26 import com.android.dx.rop.code.Insn; 27 import com.android.dx.rop.code.RegOps; 28 import com.android.dx.rop.code.Rop [all...] |
| /external/proguard/src/proguard/classfile/editor/ |
| CodeAttributeComposer.java | 34 * copies them into code attributes that it visits. 67 private byte[] code = new byte[ClassConstants.TYPICAL_CODE_LENGTH]; field in class:CodeAttributeComposer 104 * Starts a new code definition. 116 * Starts a new code fragment. Branch instructions that are added are 117 * assumed to be relative within such code fragments. 118 * @param maximumCodeFragmentLength the maximum length of the code that will 127 throw new IllegalArgumentException("Maximum number of code fragment levels exceeded ["+level+"]"); 137 // Make sure there is sufficient space for adding the code fragment. 142 // Try to reuse the previous array for this code fragment. 154 // Remember the location of the code fragment [all...] |
| /external/v8/test/mjsunit/ |
| constant-folding.js | 6 // * Redistributions of source code must retain the above copyright 29 // The code generator now handles compile-time constants specially. 30 // Test the code generated when operands are known at compile time 196 // We generate different code for the case where the operand is a constant. 212 // Answer is non-Smi so the subtraction is not folded in the code
|
| /frameworks/base/cmds/keystore/ |
| keystore.c | 93 * code [length_1 message_1 ... length_n message_n] end-of-file 94 * where code is one byte long and lengths are unsigned 16-bit integers in 99 static int recv_code(int8_t *code) 101 return recv(the_socket, code, 1, 0) == 1; 134 static void send_code(int8_t code) 136 send(the_socket, &code, 1, 0); 226 * it will be treated as a response code and transmitted to the client. Note 422 int8_t code; member in struct:action 452 static int8_t process(int8_t code) { 460 while (action->code && action->code != code) [all...] |
| /cts/tools/dasm/src/dasm/ |
| parser.java | 3 // The following code was generated by Java(tm) CUP v0.9d 816 /* call code in generated class */ 879 /** JavaCup generated class to encapsulate user supplied action code.*/ [all...] |
| /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
| NamedNodeMapSetNamedItemNS.java | 143 notes = "Verifies that setNamedItemNS throws DOMException with WRONG_DOCUMENT_ERR code.", 177 success = (ex.code == DOMException.WRONG_DOCUMENT_ERR); 184 notes = "Verifies that setNamedItemNS throws DOMException with WRONG_DOCUMENT_ERR code.", 214 success = (ex.code == DOMException.WRONG_DOCUMENT_ERR); 243 // success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR); 253 // success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR); 260 notes = "Verifies that setNamedItemNS throws DOMException with INUSE_ATTRIBUTE_ERR code.", 285 success = (ex.code == DOMException.INUSE_ATTRIBUTE_ERR); 292 notes = "Verifies that setNamedItemNS throws DOMException with INUSE_ATTRIBUTE_ERR code.", 317 success = (ex.code == DOMException.INUSE_ATTRIBUTE_ERR) [all...] |
| /external/kernel-headers/original/linux/ |
| module.h | 297 /* Here is the actual code + data, vfree'd on unload. */ 303 /* The size of the executable code in each section. */ 351 aren't used before they (may) fail. But presently too much code 373 extern void __module_put_and_exit(struct module *mod, long code) 375 #define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code); 563 #define module_put_and_exit(code) do_exit(code)
|
| /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/ |
| c3_14pf.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 134 code[] Array of type Word16 -- Innovative codebook 155 The code length is 40, containing 3 nonzero pulses: i0...i2. 177 PSEUDO-CODE 182 When the code is written for a specific target processor the 208 Word16 code[], /* o : Innovative codebook */ 276 code, 284 * Include fixed-gain pitch contribution into code[]. * 293 code[i - T0], 297 code[i] [all...] |
| c4_17pf.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 145 code[] Array of type Word16 -- Innovative codebook 165 The code length is 40, containing 4 nonzero pulses: i0...i3. 187 PSEUDO-CODE 192 When the code is written for a specific target processor the 218 Word16 code[], /* o : Innovative codebook */ 286 code, 294 * Include fixed-gain pitch contribution into code[]. * 305 code[i - T0], 309 code[i] [all...] |
| /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/ |
| c3_14pf.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 134 code[] Array of type Word16 -- Innovative codebook 155 The code length is 40, containing 3 nonzero pulses: i0...i2. 177 PSEUDO-CODE 182 When the code is written for a specific target processor the 208 Word16 code[], /* o : Innovative codebook */ 276 code, 284 * Include fixed-gain pitch contribution into code[]. * 293 code[i - T0], 297 code[i] [all...] |
| c4_17pf.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 145 code[] Array of type Word16 -- Innovative codebook 165 The code length is 40, containing 4 nonzero pulses: i0...i3. 187 PSEUDO-CODE 192 When the code is written for a specific target processor the 218 Word16 code[], /* o : Innovative codebook */ 286 code, 294 * Include fixed-gain pitch contribution into code[]. * 305 code[i - T0], 309 code[i] [all...] |
| /frameworks/base/services/java/com/android/server/am/ |
| PendingIntentRecord.java | 175 public int send(int code, Intent intent, String resolvedType, 177 return sendInner(code, intent, resolvedType, finishedReceiver, 181 int sendInner(int code, Intent intent, String resolvedType, 222 key.who, key.requestCode, code, finalIntent); 230 finishedReceiver, code, null, null, null,
|
| /external/v8/test/cctest/ |
| test-regexp.cc | 6 // * Redistributions of source code must retain the above copyright 679 static ArchRegExpMacroAssembler::Result Execute(Code* code, 686 code, 705 Handle<Code> code = Handle<Code>::cast(code_object); local 714 Execute(*code, 749 Handle<Code> code = Handle<Code>::cast(code_object) local 805 Handle<Code> code = Handle<Code>::cast(code_object); local 863 Handle<Code> code = Handle<Code>::cast(code_object); local 904 Handle<Code> code = Handle<Code>::cast(code_object); local 950 Handle<Code> code = Handle<Code>::cast(code_object); local 1005 Handle<Code> code = Handle<Code>::cast(code_object); local 1063 Handle<Code> code = Handle<Code>::cast(code_object); local 1161 Handle<Code> code = Handle<Code>::cast(code_object); local 1202 Handle<Code> code = Handle<Code>::cast(code_object); local 1246 Handle<Code> code = Handle<Code>::cast(code_object); local [all...] |
| /external/tcpdump/ |
| print-ppp.c | 6 * modification, are permitted provided that: (1) source code distributions 8 * distributions including binary code include the above copyright notice and 122 #define CPCODES_CODE_REJ 7 /* Code-Reject */ 140 {CPCODES_CODE_REJ, "Code-Reject"}, 427 u_int code, len; local 441 code = *tptr++; 444 tok2str(cpcodes, "Unknown Opcode",code), 445 code, 465 switch (code) { 482 x = len - 4; /* Code(1), Identifier(1) and Length(2) * 800 u_int code, len; local 879 u_int code, len; local [all...] |
| /frameworks/base/libs/ui/ |
| EventHub.cpp | 191 int EventHub::getScancodeState(int code) const 193 return getScancodeState(mFirstKeyboardId, code); 196 int EventHub::getScancodeState(int32_t deviceId, int code) const 202 if (code >= 0 && code <= KEY_MAX) { 207 return test_bit(code, key_bitmask) ? 1 : 0; 214 int EventHub::getKeycodeState(int code) const 216 return getKeycodeState(mFirstKeyboardId, code); 219 int EventHub::getKeycodeState(int32_t deviceId, int code) const 226 device->layoutMap->findScancodes(code, &scanCodes) [all...] |
| /external/ppp/pppd/ |
| lcp.c | 10 * 1. Redistributions of source code must retain the above copyright 203 * Callbacks for fsm code. (CI = Configuration Information) 499 * lcp_extcode - Handle a LCP-specific code. 502 lcp_extcode(f, code, id, inp, len) 504 int code, id; 510 switch( code ){ 961 #define NAKCICHAP(opt, neg, code) \ 971 code \ 973 #define NAKCICHAR(opt, neg, code) \ 982 code \ 1977 int code, id, len, olen, i; local [all...] |
| /external/qemu/slirp/ |
| ip_input.c | 8 * 1. Redistributions of source code must retain the above copyright 282 * would confuse code below. 507 /* int opt, optlen, cnt, off, code, type = ICMP_PARAMPROB, forward = 0; */ 508 int opt, optlen, cnt, off, code, type, forward = 0; local 525 code = &cp[IPOPT_OLEN] - (u_char *)ip; 546 code = &cp[IPOPT_OFFSET] - (u_char *)ip; 555 code = ICMP_UNREACH_SRCFAIL; 586 code = ICMP_UNREACH_SRCFAIL; 601 code = &cp[IPOPT_OFFSET] - (u_char *)ip; 619 code = ICMP_UNREACH_HOST [all...] |
| socket.c | 289 * There's a lot duplicated code here, but... 461 u_char code=ICMP_UNREACH_PORT; local 463 if(errno == EHOSTUNREACH) code=ICMP_UNREACH_HOST; 464 else if(errno == ENETUNREACH) code=ICMP_UNREACH_NET; 468 icmp_error(so->so_m, ICMP_UNREACH,code, 0,strerror(errno)); 507 u_char code=ICMP_UNREACH_PORT; local 509 if(errno == EHOSTUNREACH) code=ICMP_UNREACH_HOST; 510 else if(errno == ENETUNREACH) code=ICMP_UNREACH_NET; 512 DEBUG_MISC((dfd," rx error, tx icmp ICMP_UNREACH:%i\n", code)); 513 icmp_error(so->so_m, ICMP_UNREACH,code, 0,strerror(errno)) [all...] |
| /external/qemu/slirp-android/ |
| ip_input.c | 8 * 1. Redistributions of source code must retain the above copyright 282 * would confuse code below. 507 /* int opt, optlen, cnt, off, code, type = ICMP_PARAMPROB, forward = 0; */ 508 int opt, optlen, cnt, off, code, type, forward = 0; local 525 code = &cp[IPOPT_OLEN] - (u_char *)ip; 546 code = &cp[IPOPT_OFFSET] - (u_char *)ip; 555 code = ICMP_UNREACH_SRCFAIL; 586 code = ICMP_UNREACH_SRCFAIL; 601 code = &cp[IPOPT_OFFSET] - (u_char *)ip; 619 code = ICMP_UNREACH_HOST [all...] |
| socket.c | 297 * There's a lot duplicated code here, but... 467 u_char code=ICMP_UNREACH_PORT; local 469 if(errno == EHOSTUNREACH) code=ICMP_UNREACH_HOST; 470 else if(errno == ENETUNREACH) code=ICMP_UNREACH_NET; 474 icmp_error(so->so_m, ICMP_UNREACH,code, 0,errno_str); 508 u_char code=ICMP_UNREACH_PORT; local 510 if(errno == EHOSTUNREACH) code=ICMP_UNREACH_HOST; 511 else if(errno == ENETUNREACH) code=ICMP_UNREACH_NET; 513 DEBUG_MISC((dfd," rx error, tx icmp ICMP_UNREACH:%i\n", code)); 514 icmp_error(so->so_m, ICMP_UNREACH,code, 0,errno_str) [all...] |