| /external/qemu/ |
| arm-semi.c | 106 static inline uint32_t set_swi_errno(TaskState *ts, uint32_t code) 108 if (code == (uint32_t)-1) 110 return code; 113 static inline uint32_t set_swi_errno(CPUState *env, uint32_t code) 115 return code; 197 /* FIXME - should this error code be -TARGET_EFAULT ? */ 228 /* FIXME - should this error code be -TARGET_EFAULT ? */ 240 /* FIXME - should this error code be -TARGET_EFAULT ? */ 259 /* FIXME - should this error code be -TARGET_EFAULT ? */ 275 /* FIXME - should this error code be -TARGET_EFAULT ? * [all...] |
| /external/tcpdump/ |
| print-radius.c | 8 * 1. Redistributions of source code must retain the above copyright 147 struct radius_hdr { u_int8_t code; /* Radius packet code */ member in struct:radius_hdr 914 tok2str(radius_command_values,"Unknown Command",rad->code), 915 rad->code, 923 tok2str(radius_command_values,"Unknown Command",rad->code), 924 rad->code, [all...] |
| /external/v8/src/ |
| accessors.cc | 6 // * Redistributions of source code must retain the above copyright 395 Handle<Code> code(SharedFunctionInfo::cast( 396 script->eval_from_shared())->code()); 397 return Smi::FromInt(code->SourcePosition(code->instruction_start() + 553 int index = ScopeInfo<>::StackSlotIndex(frame->code(),
|
| bootstrapper.cc | 6 // * Redistributions of source code must retain the above copyright 45 // (AsciiString*, JSFunction*), mapping names of native code files 125 // Old snapshot code can't cope with external strings at all. 257 Handle<Code> code); 337 Handle<Code> call_code = Handle<Code>(Builtins::builtin(call)); 453 Handle<Code> code = local 454 Handle<Code>(Builtins::builtin(Builtins::EmptyFunction)) 528 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::Illegal)); local 558 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::Illegal)); local 754 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::Illegal)); local 802 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::Illegal)); local 818 Handle<Code> code = local 829 Handle<Code> code = local 961 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::Illegal)); local [all...] |
| /external/webkit/WebKit/qt/WebCoreSupport/ |
| EditorClientQt.cpp | 12 * 1. Redistributions of source code must retain the above copyright 90 WebCore::ExceptionCode code; 93 .arg(range->startOffset(code)).arg(dumpPath(range->startContainer(code))) 94 .arg(range->endOffset(code)).arg(dumpPath(range->endContainer(code)));
|
| /dalvik/docs/ |
| prettify.js | 18 * some functions for browser-side pretty printing of code contained in html. 34 * 3) mark the <pre> and <code> tags in your source with class=prettyprint. 39 * need to specify which language the code is in. 50 * Split {@code prettyPrint} into multiple timeouts so as not to interfere with 52 * If set to {@code false}, {@code prettyPrint()} is synchronous. 70 /** Pretty print a chunk of code. 72 * @param {string} sourceCodeHtml code as html 73 * @return {string} code as html, but prettier 76 /** find all the < pre > and < code > tags in the DOM with class=prettyprin [all...] |
| /dalvik/dx/src/com/android/dx/cf/direct/ |
| StdAttributeFactory.java | 37 import com.android.dx.cf.code.ByteCatchList; 38 import com.android.dx.cf.code.BytecodeArray; 39 import com.android.dx.cf.code.LineNumberList; 40 import com.android.dx.cf.code.LocalVariableList; 49 import com.android.dx.rop.code.AccessFlags; 68 /** {@code non-null;} shared instance of this class */ 141 return code(cf, offset, length, observer); 194 * Parses an {@code AnnotationDefault} attribute. 210 * Parses a {@code Code} attribute 212 private Attribute code(DirectClassFile cf, int offset, int length, method in class:StdAttributeFactory 244 BytecodeArray code = local [all...] |
| /external/webkit/WebCore/bindings/v8/ |
| V8Proxy.cpp | 8 * * Redistributions of source code must retain the above copyright 242 v8::Handle<v8::Script> V8Proxy::compileScript(v8::Handle<v8::String> code, const String& fileName, int baseLine) 246 v8::Handle<v8::Script> script = compileScriptInternal(code, fileName, baseLine); 251 v8::Handle<v8::Script> V8Proxy::compileScriptInternal(v8::Handle<v8::String> code, const String& fileName, int baseLine) 258 v8::Handle<v8::Script> script = v8::Script::Compile(code, &origin); 371 // the code. These exceptions should not interfere with 372 // javascript code we might evaluate from C++ when returning 378 v8::Local<v8::String> code = v8ExternalString(source.source()); local 385 v8::Handle<v8::Script> script = compileScript(code, source.url(), source.startLine() - 1); 426 v8::Local<v8::String> code = v8ExternalString("throw RangeError('Recursion too deep')") local 487 v8::Local<v8::String> code = v8::String::New("throw new RangeError('Maximum call stack size exceeded.')"); local [all...] |
| /external/wpa_supplicant/ |
| eap_peap.c | 218 resp->code = EAP_CODE_RESPONSE; 260 resp_hdr->code = EAP_CODE_RESPONSE; 474 if (len_decrypted == 5 && hdr->code == EAP_CODE_REQUEST && 481 if (len_decrypted >= 5 && hdr->code == EAP_CODE_REQUEST && 495 nhdr->code = req->code; 540 wpa_printf(MSG_DEBUG, "EAP-PEAP: received Phase 2: code=%d " 541 "identifier=%d length=%lu", hdr->code, hdr->identifier, 543 switch (hdr->code) { 588 rhdr->code = EAP_CODE_SUCCESS [all...] |
| /frameworks/base/core/java/android/accounts/ |
| AccountManager.java | 262 * This is intended for authenticators and related code; applications 286 * This is intended for authenticators and related code to store [all...] |
| /dalvik/dx/src/com/android/dx/dex/code/ |
| RopToDop.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.Insn; 20 import com.android.dx.rop.code.RegOps; 21 import com.android.dx.rop.code.Rop; 22 import com.android.dx.rop.code.Rops; 23 import com.android.dx.rop.code.ThrowingCstInsn; 24 import com.android.dx.rop.code.RegisterSpec; 38 /** {@code non-null;} map from all the common rops to dalvik opcodes */ 281 * @param insn {@code non-null;} the original instruction
|
| /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/ |
| cod_amr.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 188 PSEUDO-CODE 243 When the code is written for a specific target processor the 362 PSEUDO-CODE 441 When the code is written for a specific target processor the 578 PSEUDO-CODE 609 When the code is written for a specific target processor the 702 PSEUDO-CODE 716 When the code is written for a specific target processor the 808 PSEUDO-CODE 1231 Word16 code[L_SUBFR]; \/* Fixed codebook excitation *\/ local [all...] |
| /external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
| combined_decode.cpp | 33 /* 03/30/2000 : Cleaned up and optimized the code. */ 37 /* Resilience." Now the code resembles the */ 56 uint code; local 138 BitstreamShowBits16(stream, stuffing_length, &code); 139 while (code == 1) 142 BitstreamShowBits16(stream, stuffing_length, &code); 189 BitstreamShowBits16(stream, stuffing_length, &code); 190 while (code == 1) 193 BitstreamShowBits16(stream, stuffing_length, &code); 343 /* 3/29/00 : Changed the returned value and optimized the code. * [all...] |
| /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/ |
| cod_amr.cpp | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 190 PSEUDO-CODE 245 When the code is written for a specific target processor the 364 PSEUDO-CODE 443 When the code is written for a specific target processor the 580 PSEUDO-CODE 611 When the code is written for a specific target processor the 704 PSEUDO-CODE 718 When the code is written for a specific target processor the 810 PSEUDO-CODE 1233 Word16 code[L_SUBFR]; \/* Fixed codebook excitation *\/ local [all...] |
| /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
| combined_decode.cpp | 32 /* 03/30/2000 : Cleaned up and optimized the code. */ 36 /* Resilience." Now the code resembles the */ 55 uint code; local 137 BitstreamShowBits16(stream, stuffing_length, &code); 138 while (code == 1) 141 BitstreamShowBits16(stream, stuffing_length, &code); 188 BitstreamShowBits16(stream, stuffing_length, &code); 189 while (code == 1) 192 BitstreamShowBits16(stream, stuffing_length, &code); 342 /* 3/29/00 : Changed the returned value and optimized the code. * [all...] |
| /external/ppp/pppd/ |
| ccp.c | 10 * 1. Redistributions of source code must retain the above copyright 165 * Protocol entry points from main code. 206 * Callbacks for fsm code. 475 * Handle a CCP-specific code. 478 ccp_extcode(f, code, id, p, len) 480 int code, id; 484 switch (code) { 937 * Peer wants us to use a different code size or something. 1492 int code, id, len; local [all...] |
| /external/strace/ |
| signal.c | 14 * 1. Redistributions of source code must retain the above copyright 464 int si_code; /* Signal code. */ 649 const char *code; local 657 code = xlookup(siginfo_codes, sip->si_code); 658 if (!code) { 661 code = xlookup(sigtrap_codes, sip->si_code); 664 code = xlookup(sigchld_codes, sip->si_code); 667 code = xlookup(sigpoll_codes, sip->si_code); 670 code = xlookup(sigprof_codes, sip->si_code); 673 code = xlookup(sigill_codes, sip->si_code) [all...] |
| /external/zlib/contrib/delphi/ |
| ZLib.pas | 265 {function zlibCheck(code: Integer): Integer; 267 Result := code; 268 if code < 0 then 272 function CCheck(code: Integer): Integer; 274 Result := code; 275 if code < 0 then 279 function DCheck(code: Integer): Integer; 281 Result := code; 282 if code < 0 then
|
| /cts/tools/dx-tests/lib/ |
| jasmin.jar | |
| /dalvik/dx/etc/ |
| jasmin.jar | |
| /device/htc/passion-common/libsensors/ |
| sensors.c | 594 event[0].code = SYN_CONFIG; 711 LOGV("compass type: %d code: %d value: %-5d time: %ds", 712 event->type, event->code, event->value, 714 switch (event->code) { 783 LOGV("proximity type: %d code: %d value: %-5d time: %ds", 784 event->type, event->code, event->value, 786 if (event->code == EVENT_TYPE_PROXIMITY) { 801 LOGV("light-level type: %d code: %d value: %-5d time: %ds", 802 event->type, event->code, event->value, 804 if (event->code == EVENT_TYPE_LIGHT) [all...] |
| /external/webkit/JavaScriptCore/assembler/ |
| ARMAssembler.h | 8 * 1. Redistributions of source code must retain the above copyright 675 static void linkPointer(void* code, JmpDst from, void* to) 677 patchPointerInternal(reinterpret_cast<intptr_t>(code) + from.m_offset, to); 710 static void linkJump(void* code, JmpSrc from, void* to) 712 patchPointerInternal(reinterpret_cast<intptr_t>(code) + from.m_offset, to); 720 static void linkCall(void* code, JmpSrc from, void* to) 722 patchPointerInternal(reinterpret_cast<intptr_t>(code) + from.m_offset, to); 732 static void* getRelocatedAddress(void* code, JmpSrc jump) 734 return reinterpret_cast<void*>(reinterpret_cast<ARMWord*>(code) + jump.m_offset / sizeof(ARMWord) + 1); 737 static void* getRelocatedAddress(void* code, JmpDst label [all...] |
| /external/e2fsprogs/e2fsck/ |
| pass2.c | 101 problem_t code; local 204 code = 0; 209 code = PR_2_HTREE_MIN_HASH; 210 fix_problem(ctx, code, &pctx); 216 code = PR_2_HTREE_BAD_DEPTH; 217 fix_problem(ctx, code, &pctx); 229 code = PR_2_HTREE_MAX_HASH; 230 fix_problem(ctx, code, &pctx); 234 code = PR_2_HTREE_NOTREF; 235 fix_problem(ctx, code, &pctx) [all...] |
| /external/opencore/android/ |
| playerdriver.cpp | 136 // Macro used in a switch statement to convert a PlayerCommand code into its 143 // Convert a command code into a string for logging purposes. 144 // @param code Of the command. 146 const char *PlayerCommandCodeToString(PlayerCommand::Code code) { 147 switch (code) { 166 default: return "UNKNOWN PlayerCommand code"; 171 // Map a PV status code to a message type (error/info/nop) 172 // @param status PacketVideo status code as defined in pvmf_return_codes.h 184 // Map a PV status to an error/info code 434 int code = command->code(); local [all...] |
| /external/v8/src/ia32/ |
| macro-assembler-ia32.cc | 6 // * Redistributions of source code must retain the above copyright 92 // to limit code size. We should probably evaluate this decision by 115 object_.code(), addr_.code(), scratch_.code()); 129 return ObjectBits::encode(object_.code()) | 130 AddressBits::encode(addr_.code()) | 131 ScratchBits::encode(scratch_.code()); 149 // The compiled code assumes that record write doesn't change the 192 // to limit code size. We should probably evaluate this decision b [all...] |