/external/chromium_org/third_party/libjingle/source/talk/base/ |
opensslstreamadapter.cc | 8 * 1. Redistributions of source code must retain the above copyright notice, 387 int code = SSL_write(ssl_, data, data_len); local 388 int ssl_error = SSL_get_error(ssl_, code); 392 ASSERT(0 < code && static_cast<unsigned>(code) <= data_len); 394 *written = code; 448 int code = SSL_read(ssl_, data, data_len); local 449 int ssl_error = SSL_get_error(ssl_, code); 453 ASSERT(0 < code && static_cast<unsigned>(code) <= data_len) 497 int code = SSL_read(ssl_, buf, toread); local 650 int code = (role_ == SSL_CLIENT) ? SSL_connect(ssl_) : SSL_accept(ssl_); local [all...] |
/external/chromium_org/v8/src/mips/ |
assembler-mips.cc | 8 // - Redistributions of source code must retain the above copyright notice, 31 // The original source code covered by the above license above has been 70 // If the compiler is allowed to use FPU then we can use FPU too in our code 113 // minimal set of features which is also allowed for generated code in the 123 // code generation. 175 return kNumbers[reg.code()]; 209 // always the case inside code objects. 214 // Patch the code at the current address with the supplied instructions. 222 // Indicate that code has changed. 227 // Patch the code at the current PC with a call to the target address [all...] |
code-stubs-mips.h | 6 // * Redistributions of source code must retain the above copyright 86 // Generate code for copying characters using a simple loop. This should only 98 // Generate code for copying a large number of characters. This function 117 // string is found the code falls through with the string in register r0. 237 ASSERT(IntRegisterBits::is_valid(the_int_.code())); 238 ASSERT(HeapNumberRegisterBits::is_valid(the_heap_number_.code())); 239 ASSERT(ScratchRegisterBits::is_valid(scratch_.code())); 240 ASSERT(SignRegisterBits::is_valid(sign_.code())); 261 return IntRegisterBits::encode(the_int_.code()) 262 | HeapNumberRegisterBits::encode(the_heap_number_.code()) [all...] |
/external/chromium_org/v8/src/ |
frames.cc | 6 // * Redistributions of source code must retain the above copyright 107 // frame code that computes the caller state to access the top 382 Code* StackFrame::GetSafepointData(Isolate* isolate, 389 entry->safepoint_entry = entry->code->GetSafepointEntry(inner_pointer); 393 entry->code->GetSafepointEntry(inner_pointer))); 396 // Fill in the results and return the code. 397 Code* code = entry->code; local 399 *stack_slots = code->stack_slots() 421 Object* code = holder; local 638 Code* code = StackFrame::GetSafepointData( local 817 Code* code = Code::cast( local 1015 Code* code = function->shared()->code(); local 1047 Code* code = opt_function->code(); local 1142 Object* code = Memory::Object_at(fp() + offset); local 1164 Code* code = NULL; local 1453 Code* code = reinterpret_cast<Code*>(object); local 1549 Code* code = Code::cast(array->get(offset + 1)); local [all...] |
cpu-profiler.cc | 6 // * Redistributions of source code must retain the above copyright 144 // proceed to the next code event. 212 Code* code, 217 rec->start = code->address(); 219 rec->size = code->ExecutableSize(); 226 Code* code, 231 rec->start = code->address(); 233 rec->size = code->ExecutableSize() [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
modulefinder.py | 342 # Scan the code, and yield 'interesting' opcode combinations 344 code = co.co_code 347 while code: 348 c = code[0] 350 oparg, = unpack('<H', code[1:3]) 352 code = code[3:] 354 if c == LOAD_CONST and code[3] == IMPORT_NAME: 355 oparg_1, oparg_2 = unpack('<xHxH', code[:6]) 357 code = code[6: [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
modulefinder.py | 342 # Scan the code, and yield 'interesting' opcode combinations 344 code = co.co_code 347 while code: 348 c = code[0] 350 oparg, = unpack('<H', code[1:3]) 352 code = code[3:] 354 if c == LOAD_CONST and code[3] == IMPORT_NAME: 355 oparg_1, oparg_2 = unpack('<xHxH', code[:6]) 357 code = code[6: [all...] |
/external/chromium_org/third_party/zlib/ |
trees.c | 13 * Each code tree is stored in a compressed form which is itself 14 * a Huffman encoding of the lengths of all the code strings (in 15 * ascending order by source values). The actual code strings are 51 /* end of block literal code */ 62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */ 65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */ 68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */ 110 /* length code for each normalized match length (0 == MIN_MATCH) */ 113 /* First normalized length for each code (0 = MIN_MATCH) */ 116 /* First normalized distance for each code (0 = distance of 1) * 246 int code; \/* code value *\/ local 587 ush code = 0; \/* running code value *\/ local 1084 unsigned code; \/* the code to send *\/ local [all...] |
/frameworks/base/services/java/com/android/server/ |
AppOpsService.java | 358 public void setMode(int code, int uid, String packageName, int mode) { 360 verifyIncomingOp(code); 362 code = AppOpsManager.opToSwitch(code); 364 Op op = getOpLocked(code, uid, packageName, true); 368 ArrayList<Callback> cbs = mOpModeWatchers.get(code); 394 repCbs.get(i).mCallback.opChanged(code, packageName); 543 public int checkOperation(int code, int uid, String packageName) { 545 verifyIncomingOp(code); 547 Op op = getOpLocked(AppOpsManager.opToSwitch(code), uid, packageName, false) [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
RopTranslator.java | 17 package com.android.dexgen.dex.code; 19 import com.android.dexgen.rop.code.BasicBlock; 20 import com.android.dexgen.rop.code.BasicBlockList; 21 import com.android.dexgen.rop.code.FillArrayDataInsn; 22 import com.android.dexgen.rop.code.Insn; 23 import com.android.dexgen.rop.code.LocalVariableInfo; 24 import com.android.dexgen.rop.code.PlainCstInsn; 25 import com.android.dexgen.rop.code.PlainInsn; 26 import com.android.dexgen.rop.code.RegOps; 27 import com.android.dexgen.rop.code.RegisterSpec [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
RopTranslator.java | 17 package com.android.dx.dex.code; 21 import com.android.dx.rop.code.BasicBlock; 22 import com.android.dx.rop.code.BasicBlockList; 23 import com.android.dx.rop.code.FillArrayDataInsn; 24 import com.android.dx.rop.code.Insn; 25 import com.android.dx.rop.code.LocalVariableInfo; 26 import com.android.dx.rop.code.PlainCstInsn; 27 import com.android.dx.rop.code.PlainInsn; 28 import com.android.dx.rop.code.RegOps; 29 import com.android.dx.rop.code.RegisterSpec [all...] |
/external/bison/src/ |
symtab.c | 124 if (s->Attr.code) \ 125 fprintf (f, " %s { %s }", #Attr, s->Attr.code) 196 if (sym->destructor.code) 210 if (type->destructor.code) 225 if (sym->destructor.code) 233 if (destructor->code) 253 if (sym->printer.code) 266 if (type->printer.code) 280 if (sym->printer.code) 287 if (printer->code) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
RopTranslator.java | 17 package com.android.dx.dex.code; 21 import com.android.dx.rop.code.BasicBlock; 22 import com.android.dx.rop.code.BasicBlockList; 23 import com.android.dx.rop.code.FillArrayDataInsn; 24 import com.android.dx.rop.code.Insn; 25 import com.android.dx.rop.code.LocalVariableInfo; 26 import com.android.dx.rop.code.PlainCstInsn; 27 import com.android.dx.rop.code.PlainInsn; 28 import com.android.dx.rop.code.RegOps; 29 import com.android.dx.rop.code.RegisterSpec [all...] |
/external/v8/src/ |
cpu-profiler.cc | 6 // * Redistributions of source code must retain the above copyright 249 // proceed to the next code event. 257 // Perform processing until we have tick events, skip remaining code events. 352 Code* code, const char* comment) { 354 tag, comment, code->address(), code->ExecutableSize()); 359 Code* code, String* name) { 366 code->address() [all...] |
/external/v8/src/mips/ |
assembler-mips.cc | 8 // - Redistributions of source code must retain the above copyright notice, 31 // The original source code covered by the above license above has been 64 // If the compiler is allowed to use FPU then we can use FPU too in our code 85 // minimal set of features which is also allowed for generated code in the 95 // code generation. 149 return kNumbers[reg.code()]; 183 // always the case inside code objects. 188 // Patch the code at the current address with the supplied instructions. 196 // Indicate that code has changed. 201 // Patch the code at the current PC with a call to the target address [all...] |
/external/chromium_org/chrome/test/chromedriver/chrome/ |
web_view_impl_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 73 ASSERT_EQ(kUnknownError, status.code()); 85 ASSERT_EQ(kUnknownError, status.code()); 140 ASSERT_EQ(kOk, status.code()); 154 ASSERT_EQ(kOk, status.code()); 191 ASSERT_NE(kOk, internal::ParseCallFunctionResult(value, &result).code()); 200 ASSERT_EQ(kOk, status.code()); 212 ASSERT_EQ(1, status.code());
|
/external/chromium_org/remoting/webapp/ |
host_screen.js | 2 // Use of this source code is governed by a BSD-style license that can be 71 var accessCodeDisplay = document.getElementById('access-code-display'); 73 // Display the access code in groups of four digits for readability. 77 nextFourDigits.className = 'access-code-digit-group'; 90 // This can only happen if the cloud tells us that the code lifetime is 92 console.error('Access code already invalid on receipt!'); 180 * @type {boolean} Whether or not the access code timeout countdown is running. 186 * @type {number} The id of the access code expiry countdown timer. 192 * @type {number} The number of seconds until the access code expires. 208 * Stop the access code timeout countdown if it is running [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/modes/asm/ |
ghash-x86_64.pl | 80 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n"; 89 $code.=<<___; 162 $code=<<___; 178 $code.=<<___; 195 $code.=<<___; 249 $code.=".align 16\n.Louter_loop:\n"; 330 $code.=<<___; 360 $code.=<<___ if (!defined($modulo)); 367 $code.=<<___; 385 $code.=<<___ [all...] |
/external/doclava/src/com/google/doclava/apicheck/ |
ApiCheck.java | 70 System.exit(report.code); 202 private int code; field in class:ApiCheck.Report 205 private Report(int code, Set<ErrorMessage> errors) { 206 this.code = code; 210 public int code() { method in class:ApiCheck.Report 211 return code;
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
DXTFlipper.java | 9 * * Redistributions of source code must retain the above copyright 57 long code = data & mask; local 58 code >>= shift; 59 return code; 62 private static long writeCode5(long data, int x, int y, long code){ 65 code = (code & mask) << shift; 69 data |= code; // write new code
|
/external/openssl/crypto/modes/asm/ |
ghash-x86_64.pl | 80 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n"; 89 $code.=<<___; 162 $code=<<___; 178 $code.=<<___; 195 $code.=<<___; 249 $code.=".align 16\n.Louter_loop:\n"; 330 $code.=<<___; 360 $code.=<<___ if (!defined($modulo)); 367 $code.=<<___; 385 $code.=<<___ [all...] |
/external/proguard/src/proguard/optimize/ |
ChangedCodePrinter.java | 32 * prints out the code if the other visitor has changed it. 233 byte[] code = codeAttribute.code; 234 byte[] oldCode = new byte[code.length]; 236 // Copy the current code. 237 System.arraycopy(code, 0, oldCode, 0, codeAttribute.u4codeLength); 242 // Check if the code has changed. 261 if (oldCode[index] != codeAttribute.code[index]) 285 (oldCode[index] == codeAttribute.code[index]? " -- ":" => ")+ 288 Integer.toHexString(0x100|codeAttribute.code[index]&0xff).substring(1)) [all...] |
/frameworks/av/media/libstagefright/codecs/amrwb/src/ |
pvamrwbdecoder.cpp | 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec 70 PSEUDO-CODE 139 ; FUNCTION CODE 171 ; FUNCTION CODE 266 ; FUNCTION CODE 276 ; FUNCTION CODE 308 int16 *code = &isf_tmp[M]; /* algebraic codevector */ local 309 int16 *excp = &code[L_SUBFR]; 557 * - decode algebraic code 559 * - find voicing factor and tilt of code for next subframe [all...] |
/art/runtime/mirror/ |
art_method.cc | 149 const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(this); local 150 return pc - reinterpret_cast<uintptr_t>(code); 160 const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(this); local 161 uint32_t sought_offset = pc - reinterpret_cast<uintptr_t>(code); 177 << "(PC " << reinterpret_cast<void*>(pc) << ", code=" << code 196 const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(this); local 197 return reinterpret_cast<uintptr_t>(code) + cur.NativePcOffset(); 204 const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(this); local 205 return reinterpret_cast<uintptr_t>(code) + cur.NativePcOffset() [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/ |
sha1-x86_64.pl | 12 # It was brought to my attention that on EM64T compiler-generated code 14 # Opteron where compiler-generated code was only 15% behind 32-bit 16 # There was suggestion to mechanically translate 32-bit code, but I 19 # implementation:-) However! While 64-bit code does perform better 23 # core must have managed to run-time optimize even 32-bit code just as 34 # The code was revised to minimize code size and to maximize 45 # 32-bit code is that 64-bit code doesn't have to spill @X[] elements 50 # Add AVX code path. See sha1-586.pl for further information [all...] |