HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 1 - 25 of 3571) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mt/
ms2.s 2 code: label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/
pcrel-coff.s 4 code: label
14 .long code - .
pcrel.s 4 code: label
16 .long code - .
pcrel2.s 4 code: label
  /bionic/libc/upstream-netbsd/lib/libc/regex/
cname.h 7 * This code is derived from software contributed to Berkeley by
13 * 1. Redistributions of source code must retain the above copyright
40 * This code is derived from software contributed to Berkeley by
46 * 1. Redistributions of source code must retain the above copyright
77 char code; member in struct:cname
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
_codecs_tw.c 18 DBCHAR code; local
30 TRYMAP_ENC(big5, code, c);
33 OUT1(code >> 8)
34 OUT2(code & 0xFF)
73 DBCHAR code; local
83 TRYMAP_ENC(cp950ext, code, c);
84 else TRYMAP_ENC(big5, code, c);
87 OUT1(code >> 8)
88 OUT2(code & 0xFF)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
_codecs_tw.c 18 DBCHAR code; local
30 TRYMAP_ENC(big5, code, c);
33 OUT1(code >> 8)
34 OUT2(code & 0xFF)
73 DBCHAR code; local
83 TRYMAP_ENC(cp950ext, code, c);
84 else TRYMAP_ENC(big5, code, c);
87 OUT1(code >> 8)
88 OUT2(code & 0xFF)
  /external/swiftshader/third_party/LLVM/lib/Support/
regcname.h 2 * This code is derived from OpenBSD's libc/regex, original license follows:
8 * This code is derived from software contributed to Berkeley by
14 * 1. Redistributions of source code must retain the above copyright
41 char code; member in struct:cname
  /external/tpm2/
PolicyCommandCode_fp.h 2 // Use of this source code is governed by a BSD-style license that can be
5 // THIS CODE IS GENERATED - DO NOT MODIFY!
14 TPM_CC code; member in struct:__anon33771
  /external/curl/tests/libtest/
lib512.c 26 /* Test case code based on source in a bug report filed by James Bursa on
31 CURLcode code; local
36 code = curl_global_init(CURL_GLOBAL_ALL);
37 if(code == CURLE_OK) {
48 code = curl_easy_setopt(curl2, CURLOPT_URL, URL);
49 if(code == CURLE_OK) {
51 code = curl_easy_perform(curl2);
52 if(code == CURLE_OK)
  /external/libchrome/base/
native_library.h 2 // Use of this source code is governed by a BSD-style license that can be
55 NativeLibraryLoadError() : code(0) {}
62 DWORD code; member in struct:base::NativeLibraryLoadError
  /external/llvm/lib/Support/
regcname.h 2 * This code is derived from OpenBSD's libc/regex, original license follows:
8 * This code is derived from software contributed to Berkeley by
14 * 1. Redistributions of source code must retain the above copyright
44 char code; member in struct:cname
  /external/syslinux/gpxe/src/arch/i386/interface/pcbios/
biosint.c 46 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
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
dec_pred_intra_dc.cpp 34 uint code; local
52 code = (int) BitstreamReadBits16_INLINE(stream, DC_size);
54 first_bit = code >> (DC_size - 1);
59 *INTRADC_delta = code ^((1 << DC_size) - 1);
64 *INTRADC_delta = code;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_pps.c 14 uint32_t code=0, i = 0; local
18 code = h264_GetVLCElement(parent, pInfo, false);
19 if(code > MAX_PIC_PARAMS) {
22 PictureParameterSet->pic_parameter_set_id = (uint8_t)code;
25 code = h264_GetVLCElement(parent, pInfo, false);
26 if(code > MAX_NUM_SPS-1) {
29 PictureParameterSet->seq_parameter_set_id = (uint8_t)code;
32 viddec_pm_get_bits(parent, &code, 1);
33 PictureParameterSet->entropy_coding_mode_flag = (uint8_t)code;
35 viddec_pm_get_bits(parent, &code, 1)
    [all...]
  /external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/examples/
HelloWorldMaker.java 19 import com.android.dx.Code;
46 // Execute our newly-generated code in-process.
69 // Declare that method on the dexMaker. Use the returned Code instance
71 Code code = dexMaker.declare(hello, Modifier.STATIC | Modifier.PUBLIC); local
74 Local<Integer> a = code.newLocal(TypeId.INT);
75 Local<Integer> b = code.newLocal(TypeId.INT);
76 Local<Integer> c = code.newLocal(TypeId.INT);
77 Local<String> s = code.newLocal(TypeId.STRING);
78 Local<PrintStream> localSystemOut = code.newLocal(printStreamType)
    [all...]
  /external/javassist/src/main/javassist/
CtNewWrappedConstructor.java 37 Bytecode code = makeBody(declaring, declaring.getClassFile2(), local
40 cons.getMethodInfo2().setCodeAttribute(code.toCodeAttribute());
58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0); local
59 code.setMaxLocals(false, parameters, 0);
60 code.addAload(0);
63 code.addInvokespecial(superclazz, "<init>", "()V");
66 stacksize = code.addLoadParameters(parameters, 1) + 1;
67 code.addInvokespecial(superclazz, "<init>",
71 stacksize = compileParameterList(code, parameters, 1);
78 stacksize2 = cparam.compile(code) + 2
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
SimException.java 17 package com.android.dx.cf.code;
  /external/clang/test/CodeGen/
2004-03-15-SimpleIndirectGoto.c 3 int code[]={0,0,0,0,1}; variable
21 bar(code);
  /external/icu/icu4c/source/common/
errorcode.cpp 27 UErrorCode code = errorCode; local
29 return code;
  /external/icu/icu4c/source/extra/scrptrun/
srtest.cpp 37 UScriptCode code = scriptRun.getScriptCode(); local
39 printf("Script '%s' from %d to %d.\n", uscript_getName(code), start, end);
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 61 Bytecode code = new Bytecode(cp); local
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>accDesc<code> must be identical to <code>desc</code>.
121 Bytecode code = new Bytecode(cp); local
173 Bytecode code = new Bytecode(cp); local
224 Bytecode code = new Bytecode(cp); local
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
SimpleFilter.java 13 int code(byte[] buf, int off, int len); method in interface:SimpleFilter
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
Child1.java 19 private Integer code; field in class:Child1
21 public Child1(Integer code) {
22 this.code = code;
26 return code;
  /frameworks/base/services/core/java/com/android/server/pm/
PackageVerificationResponse.java 20 public final int code; field in class:PackageVerificationResponse
24 public PackageVerificationResponse(int code, int callerUid) {
25 this.code = code;

Completed in 679 milliseconds

1 2 3 4 5 6 7 8 91011>>