HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 626 - 650 of 19832) sorted by null

<<21222324252627282930>>

  /dalvik/dx/src/com/android/dx/dex/code/
BlockAddresses.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.BasicBlockList;
21 import com.android.dx.rop.code.Insn;
22 import com.android.dx.rop.code.RopMethod;
23 import com.android.dx.rop.code.SourcePosition;
31 /** {@code non-null;} array containing addresses for the start of each basic
35 /** {@code non-null;} array containing addresses for the final instruction
39 /** {@code non-null;} array containing addresses for the end (just past the
47 * @param method {@code non-null;} the method to have block addresses fo
    [all...]
  /external/capstone/bindings/python/
test_lite.py 41 for (arch, mode, code, comment, syntax) in all_tests:
45 print(to_hex(code))
46 for (addr, size, mnemonic, op_str) in cs_disasm_lite(arch, mode, code, 0x1000):
53 for (arch, mode, code, comment, syntax) in all_tests:
56 print("Code: %s" % to_hex(code))
65 for (addr, size, mnemonic, op_str) in md.disasm_lite(code, 0x1000):
  /external/dtc/tests/
rw_tree1.c 34 #define CHECK(code) \
36 err = (code); \
38 FAIL(#code ": %s", fdt_strerror(err)); \
41 #define OFF_CHECK(off, code) \
43 (off) = (code); \
45 FAIL(#code ": %s", fdt_strerror(off)); \
  /external/libffi/testsuite/libffi.call/
unwindtest.cc 54 void *code; local
55 ffi_closure *pcl = (ffi_closure *)ffi_closure_alloc(sizeof(ffi_closure), &code);
63 CHECK(ffi_prep_closure_loc(pcl, &cif, closure_test_fn, NULL, code) == FFI_OK);
67 (*((closure_test_type)(code)))();
102 (void *) 3 /* userdata */, code) == FFI_OK);
105 (*((closure_test_type1)code))
  /external/libxml2/python/tests/
tstLastError.py 23 def failUnlessXmlError(self,f,args,exc,domain,code,message,level,file,line):
37 print("code = ",e.code())
44 self.failUnlessEqual(code,e.code())
58 code=libxml2.XML_IO_LOAD_ERROR,
71 code=libxml2.XML_ERR_TAG_NOT_FINISHED,
  /external/opencv/otherlibs/highgui/
grfmt_pxm.cpp 19 // * Redistribution's of source code must retain the above copyright notice,
85 int code; local
89 code = strm.GetByte();
91 if( !isdigit(code))
95 if( code == '#' )
99 code = strm.GetByte();
101 while( code != '\n' && code != '\r' );
104 code = strm.GetByte();
106 while( isspace(code))
150 int code = m_strm.GetByte(); local
275 int code = ReadNumber( m_strm, INT_MAX ); local
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
unwindtest.cc 54 void *code; local
55 ffi_closure *pcl = (ffi_closure *)ffi_closure_alloc(sizeof(ffi_closure), &code);
63 CHECK(ffi_prep_closure_loc(pcl, &cif, closure_test_fn, NULL, code) == FFI_OK);
67 (*((closure_test_type)(code)))();
102 (void *) 3 /* userdata */, code) == FFI_OK);
105 (*((closure_test_type1)code))
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
unwindtest.cc 54 void *code; local
55 ffi_closure *pcl = (ffi_closure *)ffi_closure_alloc(sizeof(ffi_closure), &code);
63 CHECK(ffi_prep_closure_loc(pcl, &cif, closure_test_fn, NULL, code) == FFI_OK);
67 (*((closure_test_type)(code)))();
102 (void *) 3 /* userdata */, code) == FFI_OK);
105 (*((closure_test_type1)code))
  /external/skia/bench/
Benchmark.h 4 * Use of this source code is governed by a BSD-style license that can be
16 #define DEF_BENCH3(code, N) \
17 static BenchRegistry gBench##N([](void*) -> Benchmark* { code; });
18 #define DEF_BENCH2(code, N) DEF_BENCH3(code, N)
19 #define DEF_BENCH(code) DEF_BENCH2(code, __COUNTER__)
  /external/skqp/bench/
Benchmark.h 4 * Use of this source code is governed by a BSD-style license that can be
16 #define DEF_BENCH3(code, N) \
17 static BenchRegistry gBench##N([](void*) -> Benchmark* { code; });
18 #define DEF_BENCH2(code, N) DEF_BENCH3(code, N)
19 #define DEF_BENCH(code) DEF_BENCH2(code, __COUNTER__)
  /external/webrtc/webrtc/voice_engine/test/auto_test/
voe_test_defines.h 4 * Use of this source code is governed by a BSD-style license
114 TEST_LOG_ERROR("Error code: %i\n",voe_base_->LastError()); \
117 #define TEST_ERROR(code) \
120 if (err != code) \
122 TEST_LOG_ERROR("Invalid error code (%d, should be %d) at line %d\n",
123 code, err, __LINE__);
135 TEST_LOG_ERROR("Error code: %i\n", voe_base_->LastError()); \
140 #define TEST_ERROR(code) \
143 if (err != code) \
145 TEST_LOG_ERROR("Invalid error code (%d, should be %d) at line %d\n",
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
phase_dispersion.cpp 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
47 int16 gain_code, (i) Q0 : gain of code
49 int16 code[], (i/o) : code vector
67 PSEUDO-CODE
148 ; FUNCTION CODE
152 int16 gain_code, /* (i) Q0 : gain of code */
154 int16 code[], /* (i/o) : code vector */
230 if (code[i] != 0
    [all...]
  /frameworks/base/tools/stats_log_api_gen/
Collation.h 75 * The name and code for an atom.
78 int code; member in struct:android::stats_log_api_gen::AtomDecl
91 AtomDecl(int code, const string& name, const string& message);
95 return (code == that.code) ? (name < that.name) : (code < that.code);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue19028.go 4 // Use of this source code is governed by a BSD-style
8 // correct code to identify the type reflect.Method.
9 // The failing code relied on Type.String() which had
  /prebuilts/go/linux-x86/test/fixedbugs/
issue19028.go 4 // Use of this source code is governed by a BSD-style
8 // correct code to identify the type reflect.Method.
9 // The failing code relied on Type.String() which had
  /toolchain/binutils/binutils-2.27/gold/testsuite/
thumb_bl_out_of_range.s 11 .code 16
24 .code 32
32 .code 16
40 .code 16
49 .code 32
60 .code 16
thumb_bl_out_of_range_local.s 11 .code 16
24 .code 32
32 .code 16
40 .code 16
49 .code 32
59 .code 16
thumb_blx_in_range.s 17 .code 32
27 .code 32
35 .code 16
45 .code 16
51 .code 32
60 .code 32
  /external/libbrillo/brillo/http/
http_transport_curl.cc 2 // Use of this source code is governed by a BSD-style license that can be
65 CURLMcode code = curl_interface_->MultiSocketAction( local
67 CHECK_NE(CURLM_CALL_MULTI_PERFORM, code)
70 if (code == CURLM_OK)
134 CURLcode code = curl_interface_->EasySetOptStr(curl_handle, CURLOPT_URL, url); local
136 if (code == CURLE_OK) {
137 code = curl_interface_->EasySetOptStr(curl_handle, CURLOPT_CAPATH,
140 if (code == CURLE_OK) {
141 code =
144 if (code == CURLE_OK)
237 CURLMcode code = curl_interface_->MultiAddHandle( local
299 CURLMcode code = curl_interface_->MultiSetSocketCallback( local
    [all...]
  /external/v8/tools/
ll_prof.py 8 # * Redistributions of source code must retain the above copyright
84 class Code(object):
85 """Code object."""
94 self.id = Code._id
95 Code._id += 1
106 self.codetype = Code.OPTIMIZED
108 self.codetype = Code.FULL_CODEGEN
110 self.codetype = Code.V8INTERNAL
112 self.codetype = Code.UNKNOWN
216 """Group of adjacent code objects.""
    [all...]
  /art/runtime/arch/x86_64/
thread_x86_64.cc 33 static void arch_prctl(int code, void* val) {
34 syscall(__NR_arch_prctl, code, val);
  /bionic/tools/
update_notice.sh 6 git diff --exit-code HEAD libc/NOTICE
  /cts/tests/tests/media/libndkaudio/
OpenSLESUtils.cpp 45 const char * getSLErrStr(int code) {
46 return errStrings[code];
  /device/google/contexthub/firmware/os/platform/stm32/lkr/
stm32f401.map.lkr 21 code : ORIGIN = 0x0800C000, LENGTH = 80K /* 16K block + 64K block */
stm32f411.map.lkr 21 code : ORIGIN = 0x0800C000, LENGTH = 208K /* 16K block + 64K block + 128K block */

Completed in 1443 milliseconds

<<21222324252627282930>>