Searched refs:code (Results 226 - 250 of 3769) sorted by relevance

1234567891011>>

/external/dexmaker/src/main/java/com/google/dexmaker/
H A DUnaryOp.java19 import com.android.dx.rop.code.Rop;
20 import com.android.dx.rop.code.Rops;
27 /** {@code ~a}. Supports int and long. */
34 /** {@code -a}. Supports int, long, float and double. */
/external/e2fsprogs/lib/et/
H A Dcom_err.c26 default_com_err_proc (const char *whoami, errcode_t code, const
31 default_com_err_proc (const char *whoami, errcode_t code, const argument
40 if (code) {
41 fputs(error_message(code), stderr);
68 void com_err_va (const char *whoami, errcode_t code, const char *fmt, argument
71 (*com_err_hook) (whoami, code, fmt, args);
75 errcode_t code,
83 com_err_va (whoami, code, fmt, pvar);
74 com_err(const char *whoami, errcode_t code, const char *fmt, ...) argument
H A Dcom_right.c17 * 1. Redistributions of source code must retain the above copyright
48 com_right(struct et_list *list, long code) argument
52 if (code >= p->table->base && code < p->table->base + p->table->n_msgs)
53 return p->table->msgs[code - p->table->base];
59 com_right_r(struct et_list *list, long code, char *str, size_t len) argument
63 if ((code >= p->table->base) &&
64 (code < p->table->base + p->table->n_msgs)) {
65 strncpy(str, p->table->msgs[code - p->table->base], len);
/external/elfutils/0.153/libdw/
H A Ddwarf_attr.c20 additional right to link the code of Red Hat elfutils with code licensed
23 distribution of source code with any binary distribution and to
25 this exception must only link to the code of Red Hat elfutils through
27 found in the source code files (the "Approved Interfaces"). The files
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Code
69 result->valp = __libdw_find_attr (die, search_name, &result->code,
74 return result->code == search_name ? result : NULL;
/external/llvm/utils/
H A Dcountloc.sh11 # This script finds all the source code files in the source code directories
34 ./utils/llvmdo -topdir "$TOPDIR" -dirs "include lib tools test utils examples" -code-only wc -l | awk '\
/external/oprofile/libopagent/
H A Dopagent.h3 * Interface to report symbol names and dynamically generated code to Oprofile
67 * Signal the dynamic generation of native code from a virtual machine.
76 * vma: The virtual memory address of the executable code.
77 * code: Pointer to the location of the compiled code.
80 * obtaining the code may be impractical. For this (or any other)
82 * If NULL is passed, no code will be copied into the JIT dump
84 * code_size: Size of the compiled code.
90 uint64_t vma, void const * code,
94 * Add debug line information to a piece of code
[all...]
/external/speex/libspeex/
H A Dvq_arm4.h11 - Redistributions of source code must retain the above copyright
78 const spx_word16_t *code = codebook;
79 dist1 = MAC16_16(dist1,in[j],*code);
80 code += len;
81 dist2 = MAC16_16(dist2,in[j],*code);
82 code += len;
83 dist3 = MAC16_16(dist3,in[j],*code);
84 code += len;
85 dist4 = MAC16_16(dist4,in[j],*code);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DfixChangeLogPatch.pl10 # * Redistributions of source code must retain the above copyright
46 # Changed some code on 2009-12-22.
55 # Changed some code on 2009-12-21.
72 Changed some code on 2010-12-22.
84 Changed some code on 2010-12-22.
98 - Changed some code on 2010-12-22.
115 - Changed some code on 2010-12-22.
136 - Changed some code on 2010-12-22.
152 - Changed some code on 2010-12-22.
172 Changed some code o
[all...]
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DAnalyzerTest.java142 private static void addJump(Bytecode code, int opcode, int pos) { argument
143 int current = code.currentPc();
144 code.addOpcode(opcode);
145 code.addIndex(pos - current);
167 fail("Invalid code should have triggered a BadBytecode exception");
202 Bytecode code = new Bytecode(info.getConstPool(), 1, 2);
203 /* 0 */ code.addIconst(1);
204 /* 1 */ addJump(code, Opcode.GOTO, 5);
205 /* 4 */ code.addIconst(0); // DEAD
206 /* 5 */ code
[all...]
/external/bluetooth/bluedroid/bta/ag/
H A Dbta_ag_rfc.c43 void bta_ag_port_cback_1(UINT32 code, UINT16 port_handle);
44 void bta_ag_port_cback_2(UINT32 code, UINT16 port_handle);
45 void bta_ag_port_cback_3(UINT32 code, UINT16 port_handle);
47 void bta_ag_mgmt_cback_1(UINT32 code, UINT16 port_handle);
48 void bta_ag_mgmt_cback_2(UINT32 code, UINT16 port_handle);
49 void bta_ag_mgmt_cback_3(UINT32 code, UINT16 port_handle);
89 static void bta_ag_port_cback(UINT32 code, UINT16 port_handle, UINT16 handle) argument
93 UNUSED(code);
124 static void bta_ag_mgmt_cback(UINT32 code, UINT16 port_handle, UINT16 handle) argument
132 APPL_TRACE_DEBUG("ag_mgmt_cback : code
219 bta_ag_mgmt_cback_1(UINT32 code, UINT16 handle) argument
220 bta_ag_mgmt_cback_2(UINT32 code, UINT16 handle) argument
221 bta_ag_mgmt_cback_3(UINT32 code, UINT16 handle) argument
222 bta_ag_port_cback_1(UINT32 code, UINT16 handle) argument
223 bta_ag_port_cback_2(UINT32 code, UINT16 handle) argument
224 bta_ag_port_cback_3(UINT32 code, UINT16 handle) argument
[all...]
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DJavaScriptUtils.java2 // Use of this source code is governed by a BSD-style license that can be
25 * Executes the given snippet of JavaScript code within the given ContentView.
29 ContentViewCore viewCore, String code) throws InterruptedException, TimeoutException {
31 viewCore, code, EVALUATION_TIMEOUT_SECONDS, TimeUnit.SECONDS);
35 * Executes the given snippet of JavaScript code within the given ContentViewCore.
41 final String code,
53 helper.evaluateJavaScript(viewCore, code);
62 * Executes the given snippet of JavaScript code but does not wait for the result.
64 public static void executeJavaScript(final ContentViewCore viewCore, final String code) { argument
68 viewCore.evaluateJavaScript(code, nul
28 executeJavaScriptAndWaitForResult( ContentViewCore viewCore, String code) argument
39 executeJavaScriptAndWaitForResult( final ContentViewCore viewCore, final String code, final long timeout, final TimeUnit timeoutUnits) argument
[all...]
/external/javassist/src/main/javassist/
H A DCtNewMethod.java24 * A collection of static methods for creating a <code>CtMethod</code>.
32 * Compiles the given source code and creates a method.
33 * The source code must include not only the method body
48 * Compiles the given source code and creates a method.
49 * The source code must include not only the method body
54 * <p>If the source code includes <code>$proceed()</code>, then
60 * that is called on by <code>
[all...]
H A DCtNewWrappedMethod.java44 Bytecode code = makeBody(declaring, declaring.getClassFile2(), body,
46 mt.getMethodInfo2().setCodeAttribute(code.toCodeAttribute());
58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0);
60 parameters, returnType, cparam, code);
61 code.setMaxStack(stacksize);
62 code.setMaxLocals(isStatic, parameters, 0);
63 return code;
73 Bytecode code)
81 code.addAload(0);
83 int stacksize = compileParameterList(code, parameter
69 makeBody0(CtClass clazz, ClassFile classfile, CtMethod wrappedBody, boolean isStatic, CtClass[] parameters, CtClass returnType, ConstParameter cparam, Bytecode code) argument
171 compileParameterList(Bytecode code, CtClass[] params, int regno) argument
179 compileReturn(Bytecode code, CtClass type) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
H A Dwin64-except.c9 * 1. Redistributions of source code must retain the above copyright
112 coff_unwind_code *code; local
119 code = SLIST_FIRST(&info->codes);
121 yasm_value_delete(&code->off);
122 yasm_xfree(code);
132 coff_unwind_code *code; local
151 SLIST_FOREACH(code, &info->codes, link) {
152 codebc = yasm_bc_create_common(&win64_uwcode_bc_callback, code,
153 yasm_symrec_get_def_line(code->loc));
157 /* Avoid double-free (by code destro
332 coff_unwind_code *code = (coff_unwind_code *)contents; local
346 coff_unwind_code *code = (coff_unwind_code *)bc->contents; local
355 coff_unwind_code *code = (coff_unwind_code *)bc->contents; local
426 coff_unwind_code *code = (coff_unwind_code *)bc->contents; local
467 coff_unwind_code *code = (coff_unwind_code *)bc->contents; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delfmanysym.asm176 tlb_lookup 0, code
178 bat_lookup i, 0, 0, code
179 bat_lookup i, 1, 0, code
180 bat_lookup i, 2, 0, code
181 bat_lookup i, 3, 0, code
183 pg_table_lookup 0, 0, code
184 pg_table_lookup 0, 0, code
185 pg_table_lookup 0, 0, code
186 pg_table_lookup 0, 0, code
187 pg_table_lookup 0, 0, code
[all...]
/external/pcre/dist/
H A Dpcre_get.c15 * Redistributions of source code must retain the above copyright notice,
61 code the compiled regex
70 pcre_get_stringnumber(const pcre *code, const char *stringname) argument
73 pcre16_get_stringnumber(const pcre16 *code, PCRE_SPTR16 stringname)
76 pcre32_get_stringnumber(const pcre32 *code, PCRE_SPTR32 stringname)
85 if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0)
89 if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMEENTRYSIZE, &entrysize)) != 0)
91 if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMETABLE, &nametable)) != 0)
95 if ((rc = pcre16_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0)
99 if ((rc = pcre16_fullinfo(code, NUL
150 pcre_get_stringtable_entries(const pcre *code, const char *stringname, char **firstptr, char **lastptr) argument
261 get_first_set(const pcre *code, const char *stringname, int *ovector) argument
390 pcre_copy_named_substring(const pcre *code, const char *subject, int *ovector, int stringcount, const char *stringname, char *buffer, int size) argument
607 pcre_get_named_substring(const pcre *code, const char *subject, int *ovector, int stringcount, const char *stringname, const char **stringptr) argument
[all...]
H A Dpcre_compile.c15 * Redistributions of source code must retain the above copyright notice,
100 soon as they can be, so that hopefully there will never be an overrun. The code
109 /(?1){0,1999}(b)/, and one user did hit the limit. The code has been changed so
359 POSIX classes (e.g. graph, print, punct) a special property code is compiled
476 "internal error: code overflow\0"
536 "disallowed Unicode code point (>= 0xd800 && <= 0xdfff)\0"
557 may mark arbitrary characters as digits - but the PCRE compiling code expects
569 Then we can use ctype_digit and ctype_xdigit in the code. */
572 is much faster, and the resulting code is simpler (the compiler turns it
700 zero because property types are handled separately in the code
1650 first_significant_code(const pcre_uchar *code, BOOL skipassert) argument
1716 find_fixedlength(pcre_uchar *code, BOOL utf, BOOL atend, compile_data *cd) argument
2050 find_bracket(const pcre_uchar *code, BOOL utf, int number) argument
2185 find_recurse(const pcre_uchar *code, BOOL utf) argument
2343 could_be_empty_branch(const pcre_uchar *code, const pcre_uchar *endcode, BOOL utf, compile_data *cd, recurse_check *recurses) argument
2718 could_be_empty(const pcre_uchar *code, const pcre_uchar *endcode, branch_chain *bcptr, BOOL utf, compile_data *cd) argument
2862 get_chr_property_list(const pcre_uchar *code, BOOL utf, const pcre_uint8 *fcc, pcre_uint32 *list) argument
3067 compare_opcodes(const pcre_uchar *code, BOOL utf, const compile_data *cd, const pcre_uint32 *base_list, const pcre_uchar *base_end) argument
3602 auto_possessify(pcre_uchar *code, BOOL utf, const compile_data *cd) argument
4010 auto_callout(pcre_uchar *code, const pcre_uchar *ptr, compile_data *cd) argument
4403 register pcre_uchar *code = *codeptr; local
8043 pcre_uchar *code = *codeptr; local
8386 is_anchored(register const pcre_uchar *code, unsigned int bracket_map, compile_data *cd, int atomcount) argument
8476 is_startline(const pcre_uchar *code, unsigned int bracket_map, compile_data *cd, int atomcount) argument
8596 find_firstassertedchar(const pcre_uchar *code, pcre_int32 *flags, BOOL inassert) argument
8796 pcre_uchar *code; local
[all...]
/external/chromium_org/v8/src/
H A Dharmony-string.js2 // Use of this source code is governed by a BSD-style license that can be
147 var code;
152 code = %_Arguments(index);
153 if (!%_IsSmi(code)) {
154 code = ToNumber(code);
156 if (code < 0 || code > 0x10FFFF || code !== TO_INTEGER(code)) {
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DEncodedMethod.java19 import com.android.dx.dex.code.DalvCode;
20 import com.android.dx.rop.code.AccessFlags;
35 /** {@code non-null;} constant for the method */
39 * {@code null-ok;} code for the method, if the method is neither
40 * {@code abstract} nor {@code native}
42 private final CodeItem code; field in class:EncodedMethod
47 * @param method {@code non-null;} constant for the method
49 * @param code {
54 EncodedMethod(CstMethodRef method, int accessFlags, DalvCode code, TypeList throwsList) argument
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DBuffer.py218 def generate_buffer_lookup_code(self, code, index_cnames):
250 # Make sure the utility code is available
251 if funcname not in code.globalstate.utility_codes:
252 code.globalstate.utility_codes.add(funcname)
253 protocode = code.globalstate['utility_code_proto']
254 defcode = code.globalstate['utility_code_def']
284 def put_unpack_buffer_aux_into_scope(buf_entry, code):
285 # Generate code to copy the needed struct info into local
300 code.putln(' '.join(ln))
302 def put_init_vars(entry, code)
[all...]
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java61 Bytecode code = new Bytecode(cp);
62 code.addAload(0);
65 regno += code.addLoad(regno, params[i]);
66 code.setMaxLocals(regno + 1); // the last parameter is added.
67 code.addInvokespecial(clazz, MethodInfo.nameInit, desc);
69 code.addReturn(null);
70 minfo.setCodeAttribute(code.toCodeAttribute());
90 * parameter type is <code>clazz</code>.
92 * <code>accDes
[all...]
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dcodegen.cc2 // Use of this source code is governed by a BSD-style license that can be
24 switch (BPF_CLASS(instruction->code)) {
26 if (BPF_OP(instruction->code) != BPF_JA) {
65 switch (BPF_CLASS(iter->code)) {
67 if (iter->code == BPF_LD + BPF_W + BPF_ABS) {
98 if (BPF_OP(iter->code) == BPF_JA) {
102 BPF_OP(iter->code) == BPF_JSET ? "&" :
103 BPF_OP(iter->code) == BPF_JEQ ? "==" :
104 BPF_OP(iter->code) == BPF_JGE ? ">=" :
105 BPF_OP(iter->code)
147 MakeInstruction(uint16_t code, uint32_t k, Instruction* next) argument
175 MakeInstruction(uint16_t code, uint32_t k, Instruction* jt, Instruction* jf) argument
[all...]
/external/chromium_org/v8/src/ic/
H A Dic-compiler.cc2 // Use of this source code is governed by a BSD-style license that can be
111 Handle<Code> code = local
115 Map::UpdateCodeCache(receiver_map, name, code);
116 return code;
139 Handle<Code> code = local
142 Map::UpdateCodeCache(receiver_map, name, code);
143 DCHECK(KeyedStoreIC::GetKeyedAccessStoreMode(code->extra_ic_state()) ==
145 return code;
156 Object* code = dictionary->ValueAt(entry); local
159 return reinterpret_cast<Code*>(code);
163 FillCache(Isolate* isolate, Handle<Code> code) argument
180 Handle<Code> code; local
203 Handle<Code> code; local
261 Handle<Code> code = ic_compiler.CompilePolymorphic( local
301 Handle<Code> code = local
310 Handle<Code> code = GetCodeWithFlags(flags, "CompileLoadInitialize"); local
318 Handle<Code> code = GetCodeWithFlags(flags, "CompileLoadPreMonomorphic"); local
327 Handle<Code> code = GetCodeWithFlags(flags, "CompileStoreInitialize"); local
335 Handle<Code> code = GetCodeWithFlags(flags, "CompileStorePreMonomorphic"); local
346 Handle<Code> code = GetCodeWithFlags(flags, "CompileStoreGeneric"); local
354 Handle<Code> code = GetCodeWithFlags(flags, "CompileStoreMegamorphic"); local
365 Handle<Code> code = GetCodeWithFlags(flags, name); local
367 PROFILE(isolate(), CodeCreateEvent(log_kind(code), *code, *name)); local
412 Handle<Code> code = CompileKeyedStorePolymorphic(receiver_maps, &handlers, local
415 PROFILE(isolate(), CodeCreateEvent(log_kind(code), *code, 0)); local
[all...]
/external/opencv/cxcore/src/
H A Dcxerror.cpp19 // * Redistribution's of source code must retain the above copyright notice,
150 cvStdErrReport( int code, const char *func_name, const char *err_msg, argument
153 if( code == CV_StsBackTrace || code == CV_StsAutoTrace )
157 cvErrorStr(code), err_msg ? err_msg : "no description" );
173 cvGuiBoxReport( int code, const char *func_name, const char *err_msg, argument
177 return cvStdErrReport( code, func_name, err_msg, file, line, 0 );
179 if( code != CV_StsBackTrace && code != CV_StsAutoTrace )
189 cvErrorStr(code), err_ms
240 int code = cvGetErrStatus(); local
333 cvError( int code, const char* func_name, const char* err_msg, const char* file_name, int line ) argument
[all...]
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dframe_tracker_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
26 .code());
28 tracker.GetContextIdForFrame("foo", &context_id).code());
36 tracker.OnEvent(&client, "Page.frameNavigated", nav_params).code());
40 tracker.OnEvent(&client, "Page.frameNavigated", nav_params).code());
42 tracker.GetContextIdForFrame("f", &context_id).code());
54 .code());
62 .code());

Completed in 588 milliseconds

1234567891011>>