/external/chromium_org/third_party/icu/source/test/cintltst/ |
cucdapi.c | 62 /* bogus names should return invalid code */ 75 log_data_err("Error getting script code Got: %i Expected: %i for name %s (Error code does not propagate if data is not present. Are you missing data?)\n", 103 log_err("Japanese locale: code #%d was %d (%s) but expected %d (%s)\n", j, 240 UScriptCode code = USCRIPT_INVALID_CODE; local 245 code = uscript_getScript(codepoints[i],&status); 247 if( code != expected[i] || 248 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT) 265 UScriptCode code= USCRIPT_INVALID_CODE; local 267 code = uscript_getScript(0x001D169,&status) 273 UScriptCode code= USCRIPT_INVALID_CODE; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_target.cpp | 148 code = reinterpret_cast<uint32_t *>(ptr); 156 uint32_t *bin = code - codeSize / 4; 331 code = NULL; 334 code = reinterpret_cast<uint32_t *>(MALLOC(binSize)); 335 if (!code) 337 emit->setCodeLocation(code, binSize); 417 nv50_ir_relocate_code(void *relocData, uint32_t *code, 429 info->entry[i].apply(code, info); 434 const uint32_t **code, uint32_t *size) 437 targ->getBuiltinCode(code, size) [all...] |
/external/icu4c/common/ |
unames.cpp | 50 * and we don't want to make it less compact, so we changed the access code. 98 UChar32 code; member in struct:__anon20596 202 /* check error code from previous attempt */ 471 static uint16_t getExtName(uint32_t code, char *buffer, uint16_t bufferLength) { 472 const char *catname = getCharCatName(code); 483 for (cp = code, ndigits = 0; cp; ++ndigits, cp >>= 4) 487 for (cp = code, i = ndigits; (cp || i > 0) && bufferLength; cp >>= 4, bufferLength--) { 500 * Unicode code point "code". 501 * The return value is always a valid Group* that may contain "code" 1102 UChar32 code; local [all...] |
/external/icu4c/test/cintltst/ |
cucdapi.c | 62 /* bogus names should return invalid code */ 75 log_data_err("Error getting script code Got: %i Expected: %i for name %s (Error code does not propagate if data is not present. Are you missing data?)\n", 103 log_err("Japanese locale: code #%d was %d (%s) but expected %d (%s)\n", j, 240 UScriptCode code = USCRIPT_INVALID_CODE; local 245 code = uscript_getScript(codepoints[i],&status); 247 if( code != expected[i] || 248 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT) 265 UScriptCode code= USCRIPT_INVALID_CODE; local 267 code = uscript_getScript(0x001D169,&status) 273 UScriptCode code= USCRIPT_INVALID_CODE; local [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_target.cpp | 148 code = reinterpret_cast<uint32_t *>(ptr); 156 uint32_t *bin = code - codeSize / 4; 331 code = NULL; 334 code = reinterpret_cast<uint32_t *>(MALLOC(binSize)); 335 if (!code) 337 emit->setCodeLocation(code, binSize); 417 nv50_ir_relocate_code(void *relocData, uint32_t *code, 429 info->entry[i].apply(code, info); 434 const uint32_t **code, uint32_t *size) 437 targ->getBuiltinCode(code, size) [all...] |
/frameworks/base/core/java/android/app/ |
PendingIntent.java | 77 * request code integers supplied to {@link #getActivity}, {@link #getActivities}, 156 * @param resultCode The final result code determined by the send. 210 * @param requestCode Private request code for the sender 241 * @param requestCode Private request code for the sender 333 * @param requestCode Private request code for the sender 383 * @param requestCode Private request code for the sender 453 * @param requestCode Private request code for the sender 507 * @param requestCode Private request code for the sender 574 * @param code Result code to supply back to the PendingIntent's target [all...] |
/frameworks/base/media/java/android/mtp/ |
MtpPropertyGroup.java | 37 // MTP property code 38 int code; field in class:MtpPropertyGroup.Property 44 Property(int code, int type, int column) { 45 this.code = code; 92 private Property createProperty(int code, ArrayList<String> columns) { 96 switch (code) { 178 Log.e(TAG, "unsupported property " + code); 184 return new Property(code, type, columns.size() - 1); 186 return new Property(code, type, -1) [all...] |
/external/chromium_org/v8/src/arm/ |
macro-assembler-arm.h | 6 // * Redistributions of source code must retain the above copyright 92 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); 102 int CallSize(Handle<Code> code, 106 void Call(Handle<Code> code, 113 // Emit code to discard a non-negative number of pointer-sized elements 190 void RememberedSetHelper(Register object, // Used for debug code. 307 if (src1.code() > src2.code()) [all...] |
/external/v8/src/arm/ |
macro-assembler-arm.h | 6 // * Redistributions of source code must retain the above copyright 103 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); 110 static int CallSize(Handle<Code> code, 114 void Call(Handle<Code> code, 120 // Emit code to discard a non-negative number of pointer-sized elements 194 void RememberedSetHelper(Register object, // Used for debug code. 306 if (src1.code() > src2.code()) [all...] |
/external/chromium_org/v8/src/ia32/ |
deoptimizer-ia32.cc | 6 // * Redistributions of source code must retain the above copyright 48 void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) { 49 Isolate* isolate = code->GetIsolate(); 52 // Compute the size of relocation information needed for the code 57 DeoptimizationInputData::cast(code->deoptimization_data()); 77 int reloc_length = code->relocation_info()->length(); 94 code->relocation_info()->GetDataStartAddress(), 111 // Replace relocation information on the code object. 112 code->set_relocation_info(*new_reloc) [all...] |
/external/v8/src/mips/ |
deoptimizer-mips.cc | 6 // * Redistributions of source code must retain the above copyright 51 // Get the optimized code. 52 Code* code = function->code(); 53 Address code_start_address = code->instruction_start(); 56 // code patching below, and is not needed any more. 57 code->InvalidateRelocation(); 62 DeoptimizationInputData::cast(code->deoptimization_data()); 79 ASSERT(call_address + patch_size() <= code->instruction_end()) [all...] |
/external/valgrind/main/helgrind/tests/ |
tc20_verifywrap.stderr.exp | 38 with error code 35 (EDEADLK: Resource deadlock would occur) 49 with error code 95 (EOPNOTSUPP: Operation not supported on transport endpoint) 62 with error code 16 (EBUSY: Device or resource busy) 69 with error code 22 (EINVAL: Invalid argument) 76 with error code 22 (EINVAL: Invalid argument) 83 with error code 22 (EINVAL: Invalid argument) 96 with error code 22 (EINVAL: Invalid argument) 113 with error code 1 (EPERM: Operation not permitted) 148 with error code 22 (EINVAL: Invalid argument) 203 with error code 22 (EINVAL: Invalid argument [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
WebSocket.cpp | 8 * * Redistributions of source code must retain the above copyright 370 void WebSocket::close(unsigned short code, const String& reason, ExceptionState& es) 372 closeInternal(code, reason, es); 380 void WebSocket::close(unsigned short code, ExceptionState& es) 382 closeInternal(code, String(), es); 385 void WebSocket::closeInternal(int code, const String& reason, ExceptionState& es) 387 if (code == WebSocketChannel::CloseEventCodeNotSpecified) 388 LOG(Network, "WebSocket %p close() without code and reason", this); 390 LOG(Network, "WebSocket %p close() code=%d reason='%s'", this, code, reason.utf8().data()) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/ |
sha512-x86_64.pl | 11 # 40% improvement over compiler-generated code on Opteron. On EM64T 14 # [being armed with inline assembler] fails to generate as fast code. 98 $code.=<<___; 143 $code.=<<___; 173 $code=<<___; 214 $code.=" mov $SZ*$i($inp),$T1\n"; 215 $code.=" mov @ROT[4],$a0\n"; 216 $code.=" mov @ROT[0],$a1\n"; 217 $code.=" bswap $T1\n"; 221 $code.=<<___ [all...] |
/external/chromium_org/v8/src/mips/ |
deoptimizer-mips.cc | 7 // * Redistributions of source code must retain the above copyright 46 void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) { 47 Address code_start_address = code->instruction_start(); 49 // code patching below, and is not needed any more. 50 code->InvalidateRelocation(); 55 DeoptimizationInputData::cast(code->deoptimization_data()); 72 ASSERT(call_address + patch_size() <= code->instruction_end()); 82 // The back edge bookkeeping code matches the pattern: 92 // We patch the code to the following form [all...] |
/external/chromium_org/v8/src/x64/ |
assembler-x64-inl.h | 6 // * Redistributions of source code must retain the above copyright 79 void Assembler::emit_code_target(Handle<Code> target, 90 // Optimization if we keep jumping to the same code target. 113 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); 118 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); 128 emit(0x48 | (reg.code() & 0x8) >> 1 | op.rex_); 133 ASSERT_EQ(rm_reg.code() & 0xf, rm_reg.code()); [all...] |
/external/openssl/crypto/sha/asm/ |
sha512-x86_64.pl | 11 # 40% improvement over compiler-generated code on Opteron. On EM64T 14 # [being armed with inline assembler] fails to generate as fast code. 98 $code.=<<___; 143 $code.=<<___; 173 $code=<<___; 214 $code.=" mov $SZ*$i($inp),$T1\n"; 215 $code.=" mov @ROT[4],$a0\n"; 216 $code.=" mov @ROT[0],$a1\n"; 217 $code.=" bswap $T1\n"; 221 $code.=<<___ [all...] |
/external/v8/src/ia32/ |
code-stubs-ia32.h | 6 // * Redistributions of source code must retain the above copyright 32 #include "code-stubs.h" 145 virtual int GetCodeKind() { return Code::UNARY_OP_IC; } 151 virtual void FinishCode(Handle<Code> code) { 152 code->set_unary_op_type(operand_type_); 232 virtual int GetCodeKind() { return Code::BINARY_OP_IC; } 238 virtual void FinishCode(Handle<Code> code) { 239 code->set_binary_op_type(operands_type_) [all...] |
assembler-ia32.cc | 8 // - Redistributions of source code must retain the above copyright notice, 33 // The original source code covered by the above license above has been modified 179 // code object moves. 185 // Patch the code at the current address with the supplied instructions. 190 // Indicate that code has changed. 195 // Patch the code at the current PC with a call to the target address. 202 // Create a code patcher. 205 // Add a label for checking the size of the code used for returning. 211 // Patch the code. 214 // Check that the size of the code generated is as expected 2175 XMMRegister code = { level }; \/\/ Emit hint number in Reg position of RegR\/M. local [all...] |
/external/v8/src/x64/ |
assembler-x64-inl.h | 6 // * Redistributions of source code must retain the above copyright 66 void Assembler::emit_code_target(Handle<Code> target, 77 // Optimization if we keep jumping to the same code target. 92 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); 97 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); 107 emit(0x48 | (reg.code() & 0x8) >> 1 | op.rex_); 112 ASSERT_EQ(rm_reg.code() & 0xf, rm_reg.code()); [all...] |
code-stubs-x64.h | 6 // * Redistributions of source code must retain the above copyright 82 // Flag that indicates how to generate code for the stub GenericBinaryOpStub. 85 NO_SMI_CODE_IN_STUB = 1 << 0 // Omit smi code in stub. 148 virtual int GetCodeKind() { return Code::UNARY_OP_IC; } 154 virtual void FinishCode(Handle<Code> code) { 155 code->set_unary_op_type(operand_type_); 234 virtual int GetCodeKind() { return Code::BINARY_OP_IC; } 240 virtual void FinishCode(Handle<Code> code) { [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
datapart_decode.cpp | 136 /* 04/01/2001 fixed MB_stuffing, removed unnecessary code */ 148 uint code; local 159 BitstreamShowBits16(stream, 9, &code); 160 while (code == 1) 163 BitstreamShowBits16(stream, 9, &code); 191 BitstreamShowBits16(stream, 9, &code); 192 while (code == 1) 195 BitstreamShowBits16(stream, 9, &code); 315 uint code; local 324 BitstreamShowBits16(stream, 10, &code); [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
_stream_hybi.py | 8 # * Redistributions of source code must retain the above copyright 370 def create_closing_handshake_body(code, reason): 372 if code is not None: 373 if (code > common.STATUS_USER_PRIVATE_MAX or 374 code < common.STATUS_NORMAL_CLOSURE): 375 raise BadOperationException('Status code is out of range') 376 if (code == common.STATUS_NO_STATUS_RECEIVED or 377 code == common.STATUS_ABNORMAL_CLOSURE or 378 code == common.STATUS_TLS_HANDSHAKE): 379 raise BadOperationException('Status code is reserved pseudo [all...] |
/external/chromium_org/third_party/icu/source/tools/gensprep/ |
gensprep.c | 278 uint32_t code; local 283 /* get the character code, field 0 */ 284 code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16); 304 (long)code, u_errorName(*pErrorCode)); 312 storeMapping(code,mapping, length, USPREP_MAP, pErrorCode); 327 /* fprintf(stdout,"Number of code points that have NormalizationCorrections mapping with length >1 : %i\n",len); */ 341 uint32_t code; local 376 fprintf(stderr, "Could not parse code point range. Error: %s\n",u_errorName(*pErrorCode)); 387 fprintf(stderr, "Could not parse code point range. Error: %s\n",u_errorName(*pErrorCode)); 396 /* get the character code, field 0 * [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_init.c | 150 * avoid generating bad code. 164 * implementation) somehow becomes invalid code. 568 /* Dump byte code to a file */ 591 void *code; local 597 code = LLVMGetPointerToGlobal(gallivm->engine, func); 598 assert(code); 599 jit_func = pointer_to_func(code); 602 lp_disassemble(code); 613 * Free the function (and its machine code). 618 const void *code) [all...] |