/external/proguard/src/proguard/optimize/peephole/ |
GotoCommonCodeReplacer.java | 32 * This AttributeVisitor redirects unconditional branches so any common code 33 * is shared, and the code preceding the branch can be removed, in the code 81 // Reset the code attribute editor. 87 // Apply the code atribute editor. 163 byte[] code = codeAttribute.code; 176 // Is the code identical at both offsets? 177 if (code[newOffset1] != code[newOffset2] [all...] |
/frameworks/av/media/libstagefright/codecs/amrwb/src/ |
pvamrwbdecoder_acelp.h | 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec 253 int16 code[], /* (i) Q9 :Innovative vector. */ 256 int32 * gain_cod, /* (o) Q16 :Code gain. */ 271 int16 code[] /* (o) :Q9 algebraic (fixed) codebook excitation */ 283 int16 code[] /* (o) Q9: algebraic (fixed) codebook excitation */ 286 int16 * x, /* in/out: impulse response (or algebraic code) */ 301 int16 code[], /* (i) Q9 : Fixed codebook excitation */ 302 int16 gain_code, /* (i) Q0 : gain of code */ 316 int16 gain_code, /* (i) Q0 : gain of code */ 318 int16 code[], /* (i/o) : code vector * [all...] |
/frameworks/base/media/java/android/media/ |
AsyncPlayer.java | 39 int code; field in class:AsyncPlayer.Command 47 return "{ code=" + code + " looping=" + looping + " stream=" + stream 94 switch (cmd.code) { 168 cmd.code = PLAY; 190 cmd.code = STOP;
|
/frameworks/native/libs/binder/ |
Binder.cpp | 98 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 103 switch (code) { 108 err = onTransact(code, data, reply, flags); 187 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) 189 switch (code) {
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
system_error.cpp | 33 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT 35 return default_error_condition(code) == condition; 39 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT 41 return *this == code.category() && code.value() == condition;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_MimeWriter.py | 146 Content-Type: multipart/knowbot-code; 253 # Second toplevel body part: code 255 code = toplevel.nextpart() 256 code.startmultipartbody("knowbot-code", "803spam999") 258 # Code: buyer program source 260 buyer = code.nextpart() 265 code.lastpart()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_MimeWriter.py | 146 Content-Type: multipart/knowbot-code; 253 # Second toplevel body part: code 255 code = toplevel.nextpart() 256 code.startmultipartbody("knowbot-code", "803spam999") 258 # Code: buyer program source 260 buyer = code.nextpart() 265 code.lastpart()
|
/dalvik/dx/src/com/android/dx/ssa/ |
ConstCollector.java | 19 import com.android.dx.rop.code.LocalItem; 20 import com.android.dx.rop.code.PlainCstInsn; 21 import com.android.dx.rop.code.PlainInsn; 22 import com.android.dx.rop.code.RegOps; 23 import com.android.dx.rop.code.RegisterSpec; 24 import com.android.dx.rop.code.RegisterSpecList; 25 import com.android.dx.rop.code.Rop; 26 import com.android.dx.rop.code.Rops; 27 import com.android.dx.rop.code.SourcePosition; 28 import com.android.dx.rop.code.ThrowingCstInsn [all...] |
/external/chromium_org/sandbox/win/src/ |
filesystem_interception.cc | 2 // Use of this source code is governed by a BSD-style license that can be 69 ResultCode code = CrossCall(ipc, IPC_NTCREATEFILE_TAG, name, attributes, local 75 if (SBOX_ALL_OK != code) 138 ResultCode code = CrossCall(ipc, IPC_NTOPENFILE_TAG, name, attributes, local 143 if (SBOX_ALL_OK != code) 203 ResultCode code = CrossCall(ipc, IPC_NTQUERYATTRIBUTESFILE_TAG, name, local 208 if (SBOX_ALL_OK != code) 261 ResultCode code = CrossCall(ipc, IPC_NTQUERYFULLATTRIBUTESFILE_TAG, name, local 266 if (SBOX_ALL_OK != code) 333 // really helps to simplify the code 338 ResultCode code = CrossCall(ipc, IPC_NTSETINFO_RENAME_TAG, file, local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/aes/asm/ |
aesni-sha1-x86_64.pl | 18 # AESNI code is weaved into it. Below are performance numbers in 35 # (*) There are two code paths: SSSE3 and AVX. See sha1-568.pl for 83 $code.=<<___; 95 $code.=<<___ if ($avx); 102 $code.=<<___; 124 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n"; 130 $code.=<<___; 147 $code.=<<___ if ($win64); 160 $code.=<<___; 170 $code.=<<___ [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/ |
sha256-armv4.pl | 12 # Performance is ~2x better than gcc 3.4 generated code and in "abso- 53 $code.=<<___ if ($i<16); 66 $code.=<<___; 106 $code.=<<___; 124 $code=<<___; 128 .code 32 163 $code.=".Lrounds_16_xx:\n"; 165 $code.=<<___; 208 $code =~ s/\`([^\`]*)\`/eval $1/gem; 209 $code =~ s/\bbx\s+lr\b/.word\t0xe12fff1e/gm; # make it possible to compile with -march=armv [all...] |
/external/chromium_org/v8/test/mjsunit/compiler/ |
globals.js | 6 // * Redistributions of source code must retain the above copyright 36 // Test that patching the IC in the compiled code works. 49 // Test that patching the IC in the compiled code works. 63 code = "g--; 1"; 64 assertEquals(1, eval(code));
|
/external/chromium_org/v8/test/mjsunit/ |
newline-in-string.js | 6 // * Redistributions of source code must retain the above copyright 39 var code = "'asdf\\" + String.fromCharCode(0xD) + String.fromCharCode(0xA) + "asdf'"; variable 40 assertEquals('asdfasdf', eval(code)); 43 code = "'asdf\\" + String.fromCharCode(0xA) + String.fromCharCode(0xD) + "asdf'"; 44 assertEquals('asdfasdf', eval(code));
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2193.js | 6 // * Redistributions of source code must retain the above copyright 28 // Flags: --allow-natives-syntax --cache-optimized-code 46 // Make sure we generate optimized code for the first closure after 48 // and the optimized code uses CreateArrayLiteralShallow runtime call. 54 // Optimize the second closure, which should reuse the optimized code
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
ConstCollector.java | 19 import com.android.dx.rop.code.LocalItem; 20 import com.android.dx.rop.code.PlainCstInsn; 21 import com.android.dx.rop.code.PlainInsn; 22 import com.android.dx.rop.code.RegOps; 23 import com.android.dx.rop.code.RegisterSpec; 24 import com.android.dx.rop.code.RegisterSpecList; 25 import com.android.dx.rop.code.Rop; 26 import com.android.dx.rop.code.Rops; 27 import com.android.dx.rop.code.SourcePosition; 28 import com.android.dx.rop.code.ThrowingCstInsn [all...] |
/external/openssl/crypto/aes/asm/ |
aesni-sha1-x86_64.pl | 18 # AESNI code is weaved into it. Below are performance numbers in 35 # (*) There are two code paths: SSSE3 and AVX. See sha1-568.pl for 83 $code.=<<___; 95 $code.=<<___ if ($avx); 102 $code.=<<___; 124 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n"; 130 $code.=<<___; 147 $code.=<<___ if ($win64); 160 $code.=<<___; 170 $code.=<<___ [all...] |
/external/openssl/crypto/sha/asm/ |
sha256-armv4.pl | 12 # Performance is ~2x better than gcc 3.4 generated code and in "abso- 53 $code.=<<___ if ($i<16); 66 $code.=<<___; 106 $code.=<<___; 124 $code=<<___; 128 .code 32 163 $code.=".Lrounds_16_xx:\n"; 165 $code.=<<___; 208 $code =~ s/\`([^\`]*)\`/eval $1/gem; 209 $code =~ s/\bbx\s+lr\b/.word\t0xe12fff1e/gm; # make it possible to compile with -march=armv [all...] |
/external/v8/test/mjsunit/compiler/ |
globals.js | 6 // * Redistributions of source code must retain the above copyright 36 // Test that patching the IC in the compiled code works. 49 // Test that patching the IC in the compiled code works. 63 code = "g--; 1"; 64 assertEquals(1, eval(code));
|
/external/v8/test/mjsunit/ |
newline-in-string.js | 6 // * Redistributions of source code must retain the above copyright 39 var code = "'asdf\\" + String.fromCharCode(0xD) + String.fromCharCode(0xA) + "asdf'"; variable 40 assertEquals('asdfasdf', eval(code)); 43 code = "'asdf\\" + String.fromCharCode(0xA) + String.fromCharCode(0xD) + "asdf'"; 44 assertEquals('asdfasdf', eval(code));
|
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/ |
ProcessErrorsTest.java | 178 // crash package name against the package name for {@code app} 363 int code = 17; local 364 code += info.condition; 365 code *= hash(info.longMsg); 366 code += info.pid; 367 code *= hash(info.processName); 368 code *= hash(info.shortMsg); 369 code *= hash(info.stackTrace); 370 code *= hash(info.tag); 371 code += info.uid [all...] |
/frameworks/testing/app-tests/AppLaunchTest/src/com/android/applaunchtest/ |
AppLaunchTest.java | 42 * Derived from frameworks/base/tests/SmokeTests/... . TODO: consider refactoring to share code 134 // crash package name against the package name for {@code app} 307 int code = 17; local 308 code += info.condition; 309 code *= hash(info.longMsg); 310 code += info.pid; 311 code *= hash(info.processName); 312 code *= hash(info.shortMsg); 313 code *= hash(info.stackTrace); 314 code *= hash(info.tag) [all...] |
/external/v8/src/ |
log.cc | 6 // * Redistributions of source code must retain the above copyright 33 #include "code-stubs.h" 287 // http://code.google.com/p/v8/issues/detail?id=487 865 Code* code, 875 LowLevelCodeCreateEvent(code, name_buffer_->get(), name_buffer_->size()); 878 RegisterSnapshotCodeName(code, name_buffer_->get(), name_buffer_->size()); 885 msg.AppendAddress(code->address()); 886 msg.Append(",%d,\"", code->ExecutableSize()); 900 Code* code [all...] |
/external/v8/src/arm/ |
deoptimizer-arm.cc | 6 // * Redistributions of source code must retain the above copyright 53 // Get the optimized code. 54 Code* code = function->code(); 55 Address code_start_address = code->instruction_start(); 58 // code patching below, and is not needed any more. 59 code->InvalidateRelocation(); 64 DeoptimizationInputData::cast(code->deoptimization_data()); 81 ASSERT(call_address + patch_size() <= code->instruction_end()) [all...] |
/external/chromium_org/chrome/test/chromedriver/chrome/ |
devtools_client_impl_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 109 ASSERT_EQ(kOk, client.ConnectIfNecessary().code()); 112 ASSERT_EQ(kOk, client.SendCommand("method", params).code()); 121 ASSERT_EQ(kOk, client.ConnectIfNecessary().code()); 126 ASSERT_EQ(kOk, status.code()); 172 ASSERT_EQ(kDisconnected, client.ConnectIfNecessary().code()); 218 ASSERT_EQ(kOk, client.ConnectIfNecessary().code()); 265 ASSERT_EQ(kOk, client.ConnectIfNecessary().code()); 474 ASSERT_EQ(kOk, client.ConnectIfNecessary().code()); 487 ASSERT_EQ(kOk, client.ConnectIfNecessary().code()); [all...] |
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrVisitor.java | 83 * <code>cls.clone()</code> or by retaining the original definition bytes. 496 final CodeAttribute_info code = new CodeAttribute_info (attribute_name_index, local 502 attributes.add (code); 651 final CodeAttribute_info code = new CodeAttribute_info (attribute_name_index, local 657 code.setCode (buf.getByteArray (), buf.size ()); 659 attributes.add (code); 710 final byte [] code = attribute.getCode (); 713 if (trace2) m_log.trace2 ("visit", "code attribute for method #" + m_methodID + ": size = " + codeSize); 717 // instructionMap.get(ip) is the number of instructions in code[0-ip [all...] |