Searched refs:code (Results 201 - 225 of 3714) sorted by relevance

1234567891011>>

/external/bison/src/
H A Dscan-code.h1 /* Bison code properties structure and scanner.
36 * A code passage captured from the grammar file and possibly translated,
37 * and/or properties associated with such a code passage. Don't break
52 char const *code; member in struct:code_props
53 /** Undefined iff \c code_props::code is \c NULL. */
59 * the \c code_props that would contain the code passage associated
65 * referenced in the code passage.
80 * - \c self has been overwritten to contain no code.
94 * - <tt>code != NULL</tt>.
95 * - \c code i
[all...]
/external/compiler-rt/test/tsan/
H A Dsignal_longjmp.cc37 #define MUST_FAULT(code) do { \
40 code; /* should pagefault -> sihandler does longjmp */ \
41 fprintf(stderr, "%s not faulted\n", #code); \
44 fprintf(stderr, "%s faulted ok\n", #code); \
/external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
H A DRangeDecoderFromBuffer.java36 code = in.readInt();
49 return pos == end && code == 0;
57 code = (code << SHIFT_BITS) | (buf[pos++] & 0xFF);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr500_fragprog_emit.c49 struct r500_fragment_program_code *code = &c->code->code.r500
194 static void use_temporary(struct r500_fragment_program_code* code, unsigned int index) argument
196 if (index > code->max_temp_idx)
197 code->max_temp_idx = index;
200 static unsigned int use_source(struct r500_fragment_program_code* code, struct rc_pair_instruction_source src) argument
211 use_temporary(code, src.Index);
227 if ((code->inst[ip].inst0 & 0x3) != R500_INST_TYPE_TEX) {
228 code
627 struct r500_fragment_program_code *code = &compiler->code->code.r500; local
[all...]
/external/pdfium/third_party/zlib_v128/
H A Dinflate.h13 the crc code when it is not needed. For shared libraries, gzip decoding
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
43 DIST, /* i: waiting for distance code */
103 /* for table and code decoding */
105 /* fixed and dynamic code tables */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code cons
[all...]
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
H A Dclosure_simple.c30 void *code; local
31 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
46 (void *) 3 /* userdata */, code) == FFI_OK);
48 res = (*(closure_test_type0)code)(0, 1, 2, 3);
H A Dcls_double_va.c26 void *code; local
27 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
53 code) == FFI_OK);
55 res = ((int(*)(char*, ...))(code))(format, doubleArg);
H A Dcls_longdouble_va.c26 void *code; local
27 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
53 code) == FFI_OK);
55 res = ((int(*)(char*, ...))(code))(format, ldArg);
H A Dcls_uchar_va.c25 void *code; local
26 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
38 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_ret_T_fn, NULL, code) == FFI_OK);
39 res = ((((cls_ret_T)code)(67, 4)));
H A Dcls_uint_va.c26 void *code; local
27 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
39 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_ret_T_fn, NULL, code) == FFI_OK);
40 res = ((((cls_ret_T)code)(67, 4)));
H A Dcls_ulong_va.c26 void *code; local
27 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
39 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_ret_T_fn, NULL, code) == FFI_OK);
40 res = ((((cls_ret_T)code)(67, 4)));
H A Dcls_ushort_va.c25 void *code; local
26 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
38 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_ret_T_fn, NULL, code) == FFI_OK);
39 res = ((((cls_ret_T)code)(67, 4)));
/external/python/cpython2/Modules/zlib/
H A Dinflate.h13 the crc code when it is not needed. For shared libraries, gzip decoding
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
43 DIST, /* i: waiting for distance code */
103 /* for table and code decoding */
105 /* fixed and dynamic code tables */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code cons
[all...]
/external/r8/src/main/java/com/android/tools/r8/ir/code/
H A DConstInstruction.java2 // for details. All rights reserved. Use of this source code is governed by a
4 package com.android.tools.r8.ir.code;
H A DInstructionIterator.java2 // for details. All rights reserved. Use of this source code is governed by a
5 package com.android.tools.r8.ir.code;
12 * {@link #next} with the passed in <code>newInstruction</code>.
/external/syslinux/com32/gplinclude/dmi/
H A Ddmi_battery.h53 const char *dmi_battery_chemistry(uint8_t code);
54 void dmi_battery_capacity(uint16_t code, uint8_t multiplier, char *capacity);
55 void dmi_battery_voltage(uint16_t code, char *voltage);
56 void dmi_battery_maximum_error(uint8_t code, char *error);
/external/syslinux/com32/lib/zlib/
H A Dinflate.h13 the crc code when it is not needed. For shared libraries, gzip decoding
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
43 DIST, /* i: waiting for distance code */
103 /* for table and code decoding */
105 /* fixed and dynamic code tables */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code cons
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dicmp.h17 uint8_t code; member in struct:icmp_header
/external/tpm2/
H A DPolicyCommandCode.c30 if(session->commandCode != 0 && session->commandCode != in->code)
32 if(!CommandIsImplemented(in->code))
37 // policyDigestnew = hash(policyDigestold || TPM_CC_PolicyCommandCode || code)
48 CryptUpdateDigestInt(&hashState, sizeof(TPM_CC), &in->code);
54 session->commandCode = in->code;
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_wsc_common.h25 struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code);
/external/wpa_supplicant_8/src/eap_common/
H A Deap_wsc_common.h25 struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_wsc_common.h25 struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code);
/external/zlib/src/
H A Dinflate.h13 the crc code when it is not needed. For shared libraries, gzip decoding
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
43 DIST, /* i: waiting for distance code */
103 /* for table and code decoding */
105 /* fixed and dynamic code tables */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code cons
[all...]
/external/javassist/src/main/javassist/
H A DCtField.java38 * Creates a <code>CtField</code> object.
40 * with <code>CtClass.addField()</code>.
42 * by a <code>CtField.Initializer</code> object.
45 * call <code>CtNewMethod.getter()</code> and
46 * <code>CtNewMethod.setter()</code>
813 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
818 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
829 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
844 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
929 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
973 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
994 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
1038 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
1059 compileStringParameter(Bytecode code) argument
1090 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
1134 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
1165 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
1175 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
1198 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
1208 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
1234 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
1244 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
1270 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
1280 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
1301 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
1311 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
1333 addNewarray(Bytecode code) argument
1341 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
1351 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
1371 compile(CtClass type, String name, Bytecode code, CtClass[] parameters, Javac drv) argument
1381 compileIfStatic(CtClass type, String name, Bytecode code, Javac drv) argument
[all...]
/external/libexif/libexif/
H A Dexif-log.c39 ExifLogCode code; member in struct:__anon10655
53 exif_log_code_get_title (ExifLogCode code) argument
57 for (i = 0; codes[i].title; i++) if (codes[i].code == code) break;
62 exif_log_code_get_message (ExifLogCode code) argument
66 for (i = 0; codes[i].message; i++) if (codes[i].code == code) break;
135 exif_log (ExifLog *log, ExifLogCode code, const char *domain, argument
141 exif_logv (log, code, domain, format, args);
146 exif_logv (ExifLog *log, ExifLogCode code, cons argument
[all...]

Completed in 730 milliseconds

1234567891011>>