Searched refs:code (Results 276 - 300 of 3714) sorted by relevance

<<11121314151617181920>>

/external/libchrome/sandbox/linux/bpf_dsl/
H A Dcodegen.cc2 // Use of this source code is governed by a BSD-style license that can be
33 // 1. In the general case, we don't eliminate dead code. If needed,
43 // to interleave MakeInstruction() calls for unrelated code
64 CodeGen::Node CodeGen::MakeInstruction(uint16_t code, argument
68 // To avoid generating redundant code sequences, we memoize the
70 auto res = memos_.insert(std::make_pair(MemoKey(code, k, jt, jf), kNullNode));
73 *node = AppendInstruction(code, k, jt, jf);
78 CodeGen::Node CodeGen::AppendInstruction(uint16_t code, argument
82 if (BPF_CLASS(code) == BPF_JMP) {
83 CHECK_NE(BPF_JA, BPF_OP(code)) << "CodeGe
123 Append(uint16_t code, uint32_t k, size_t jt, size_t jf) argument
[all...]
/external/r8/src/main/java/com/android/tools/r8/ir/code/
H A DArrayGet.java2 // for details. All rights reserved. Use of this source code is governed by a
4 package com.android.tools.r8.ir.code;
6 import com.android.tools.r8.code.Aget;
7 import com.android.tools.r8.code.AgetBoolean;
8 import com.android.tools.r8.code.AgetByte;
9 import com.android.tools.r8.code.AgetChar;
10 import com.android.tools.r8.code.AgetObject;
11 import com.android.tools.r8.code.AgetShort;
12 import com.android.tools.r8.code.AgetWide;
45 com.android.tools.r8.code
[all...]
H A DInstanceGet.java2 // for details. All rights reserved. Use of this source code is governed by a
5 package com.android.tools.r8.ir.code;
7 import com.android.tools.r8.code.Iget;
8 import com.android.tools.r8.code.IgetBoolean;
9 import com.android.tools.r8.code.IgetByte;
10 import com.android.tools.r8.code.IgetChar;
11 import com.android.tools.r8.code.IgetObject;
12 import com.android.tools.r8.code.IgetShort;
13 import com.android.tools.r8.code.IgetWide;
39 com.android.tools.r8.code
[all...]
H A DInstancePut.java2 // for details. All rights reserved. Use of this source code is governed by a
5 package com.android.tools.r8.ir.code;
7 import com.android.tools.r8.code.Iput;
8 import com.android.tools.r8.code.IputBoolean;
9 import com.android.tools.r8.code.IputByte;
10 import com.android.tools.r8.code.IputChar;
11 import com.android.tools.r8.code.IputObject;
12 import com.android.tools.r8.code.IputShort;
13 import com.android.tools.r8.code.IputWide;
36 com.android.tools.r8.code
[all...]
H A DStaticGet.java2 // for details. All rights reserved. Use of this source code is governed by a
4 package com.android.tools.r8.ir.code;
6 import com.android.tools.r8.code.Sget;
7 import com.android.tools.r8.code.SgetBoolean;
8 import com.android.tools.r8.code.SgetByte;
9 import com.android.tools.r8.code.SgetChar;
10 import com.android.tools.r8.code.SgetObject;
11 import com.android.tools.r8.code.SgetShort;
12 import com.android.tools.r8.code.SgetWide;
30 com.android.tools.r8.code
[all...]
H A DStaticPut.java2 // for details. All rights reserved. Use of this source code is governed by a
4 package com.android.tools.r8.ir.code;
6 import com.android.tools.r8.code.Sput;
7 import com.android.tools.r8.code.SputBoolean;
8 import com.android.tools.r8.code.SputByte;
9 import com.android.tools.r8.code.SputChar;
10 import com.android.tools.r8.code.SputObject;
11 import com.android.tools.r8.code.SputShort;
12 import com.android.tools.r8.code.SputWide;
31 com.android.tools.r8.code
[all...]
/external/v8/src/profiler/
H A Dprofiler-listener.cc2 // Use of this source code is governed by a BSD-style license that can be
35 AbstractCode* code, const char* name) {
38 rec->start = code->address();
42 CpuProfileNode::kNoColumnNumberInfo, NULL, code->instruction_start());
43 RecordInliningInfo(rec->entry, code);
44 rec->size = code->ExecutableSize();
49 AbstractCode* code, Name* name) {
52 rec->start = code->address();
56 CpuProfileNode::kNoColumnNumberInfo, NULL, code->instruction_start());
57 RecordInliningInfo(rec->entry, code);
34 CodeCreateEvent(CodeEventListener::LogEventsAndTags tag, AbstractCode* code, const char* name) argument
48 CodeCreateEvent(CodeEventListener::LogEventsAndTags tag, AbstractCode* code, Name* name) argument
62 CodeCreateEvent(CodeEventListener::LogEventsAndTags tag, AbstractCode* code, SharedFunctionInfo* shared, Name* script_name) argument
117 CodeCreateEvent(CodeEventListener::LogEventsAndTags tag, AbstractCode* code, int args_count) argument
139 CodeDisableOptEvent(AbstractCode* code, SharedFunctionInfo* shared) argument
148 CodeDeoptEvent(Code* code, Address pc, int fp_to_sp_delta) argument
171 RegExpCodeCreateEvent(AbstractCode* code, String* source) argument
[all...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
H A DRangeDecoder.java18 int code = 0; field in class:RangeDecoder
29 // Compare code and bound as if they were unsigned 32-bit integers.
30 if ((code ^ 0x80000000) < (bound ^ 0x80000000)) {
37 code -= bound;
76 int t = (code - range) >>> 31;
77 code -= range & (t - 1);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DResponse.java39 private final int code; field in class:Response
53 this.code = builder.code;
68 * may copy headers like {@code Content-Length} from the request body.
86 /** Returns the HTTP status code. */
87 public int code() { method in class:Response
88 return code;
92 * Returns true if the code is in [200..300), which means the request was
96 return code >= 200 && code < 30
224 private int code = -1; field in class:Response.Builder
260 code(int code) argument
[all...]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DShadowBinderTest.java23 assertThat(testBinder.code, equalTo(2));
30 int code; field in class:ShadowBinderTest.TestBinder
36 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { argument
37 this.code = code;
/external/swiftshader/third_party/LLVM/lib/Support/
H A Dsystem_error.cpp35 error_category::equivalent(int code, const error_condition& condition) const { argument
36 return default_error_condition(code) == condition;
40 error_category::equivalent(const error_code& code, int condition) const { argument
41 return *this == code.category() && code.value() == condition;
/external/syslinux/gpxe/src/arch/i386/interface/pcbios/
H A Dbiosint.c46 char code[64]; local
47 copy_from_real ( code, chain_vector->segment,
48 chain_vector->offset, sizeof ( code ) );
49 DBG_HDA ( *chain_vector, code, sizeof ( code ) );
64 * Note that this operation may fail, if some external code has hooked
/external/v8/tools/testrunner/server/
H A Dsignatures.py6 # * Redistributions of source code must retain the above copyright
41 code = subprocess.call("openssl dgst -out %s -sign %s %s" %
44 if code != 0: return [None, code]
56 code = subprocess.call("openssl dgst -verify %s -signature %s %s" %
59 matched = (code == 0)
/external/r8/src/main/java/com/android/tools/r8/ir/optimize/
H A DInliner.java2 // for details. All rights reserved. Use of this source code is governed by a
11 import com.android.tools.r8.ir.code.BasicBlock;
12 import com.android.tools.r8.ir.code.DominatorTree;
13 import com.android.tools.r8.ir.code.IRCode;
14 import com.android.tools.r8.ir.code.Instruction;
15 import com.android.tools.r8.ir.code.InstructionIterator;
16 import com.android.tools.r8.ir.code.InstructionListIterator;
17 import com.android.tools.r8.ir.code.Invoke;
18 import com.android.tools.r8.ir.code.InvokeMethod;
19 import com.android.tools.r8.ir.code
64 identifySimpleMethods(IRCode code, DexEncodedMethod method) argument
194 numberOfInstructions(IRCode code) argument
202 legalConstructorInline(DexEncodedMethod method, IRCode code) argument
237 receiverValue(DexEncodedMethod method, IRCode code) argument
246 performInlining(DexEncodedMethod method, IRCode code, CallGraph callGraph) argument
354 computeReceiverMustBeNonNull(IRCode code) argument
[all...]
/external/r8/src/main/java/com/android/tools/r8/graph/
H A DDexEncodedMethod.java2 // for details. All rights reserved. Use of this source code is governed by a
11 import com.android.tools.r8.code.Const;
12 import com.android.tools.r8.code.ConstString;
13 import com.android.tools.r8.code.ConstStringJumbo;
14 import com.android.tools.r8.code.Instruction;
15 import com.android.tools.r8.code.InvokeDirect;
16 import com.android.tools.r8.code.InvokeStatic;
17 import com.android.tools.r8.code.InvokeSuper;
18 import com.android.tools.r8.code.NewInstance;
19 import com.android.tools.r8.code
62 private Code code; field in class:DexEncodedMethod
66 DexEncodedMethod(DexMethod method, DexAccessFlags accessFlags, DexAnnotationSet annotations, DexAnnotationSetRefList parameterAnnotations, Code code) argument
509 private Code code; field in class:DexEncodedMethod.Builder
540 setCode(Code code) argument
[all...]
/external/r8/src/test/java/com/android/tools/r8/smali/
H A DConstantFoldingTest.java2 // for details. All rights reserved. Use of this source code is governed by a
10 import com.android.tools.r8.code.Const4;
11 import com.android.tools.r8.code.DivIntLit8;
12 import com.android.tools.r8.code.Instruction;
13 import com.android.tools.r8.code.RemIntLit8;
14 import com.android.tools.r8.code.Return;
15 import com.android.tools.r8.code.ReturnWide;
18 import com.android.tools.r8.ir.code.Cmp.Bias;
19 import com.android.tools.r8.ir.code.If.Type;
20 import com.android.tools.r8.ir.code
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
H A DISO10126d2Padding.java51 byte code = (byte)(in.length - inOff);
59 in[inOff] = code;
61 return code;
H A DPKCS7Padding.java42 byte code = (byte)(in.length - inOff);
46 in[inOff] = code;
50 return code;
H A DX923Padding.java45 byte code = (byte)(in.length - inOff);
60 in[inOff] = code;
62 return code;
/external/brotli/enc/
H A Dprefix.h22 /* Here distance_code is an intermediate code, i.e. one of the special codes or
27 uint16_t* code,
30 *code = (uint16_t)distance_code;
42 *code = (uint16_t)(
24 PrefixEncodeCopyDistance(size_t distance_code, size_t num_direct_codes, size_t postfix_bits, uint16_t* code, uint32_t* extra_bits) argument
/external/dtc/tests/
H A Dappendprop2.c34 #define CHECK(code) \
36 err = (code); \
38 FAIL(#code ": %s", fdt_strerror(err)); \
H A Dcheck_path.c27 #define CHECK(code) \
29 int err = (code); \
31 FAIL(#code ": %s", fdt_strerror(err)); \
H A Doverlay_bad_fixup.c28 #define CHECK(code, expected) \
30 err = (code); \
32 FAIL(#code ": %s", fdt_strerror(err)); \
/external/e2fsprogs/lib/et/
H A Dcom_err.h34 extern void com_err_va (const char *whoami, errcode_t code, const char *fmt,
54 extern const char *com_right(struct et_list *list, long code);
55 extern const char *com_right_r(struct et_list *list, long code, char *str, size_t len);
/external/python/cpython2/Lib/
H A DcProfile.py100 func = label(entry.code)
106 callersdicts[id(entry.code)] = callers
111 func = label(entry.code)
114 callers = callersdicts[id(subentry.code)]
155 def label(code):
156 if isinstance(code, str):
157 return ('~', 0, code) # built-in functions ('~' sorts at the end)
159 return (code.co_filename, code.co_firstlineno, code
[all...]

Completed in 859 milliseconds

<<11121314151617181920>>