HomeSort by: relevance | last modified time | path
    Searched refs:ee (Results 1 - 25 of 143) sorted by relevancy

1 2 3 4 5 6

  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
executionengine.go 91 func NewExecutionEngine(m Module) (ee ExecutionEngine, err error) {
93 fail := C.LLVMCreateExecutionEngineForModule(&ee.C, m.C, &cmsg)
95 ee.C = nil
102 func NewInterpreter(m Module) (ee ExecutionEngine, err error) {
104 fail := C.LLVMCreateInterpreterForModule(&ee.C, m.C, &cmsg)
106 ee.C = nil
119 func NewMCJITCompiler(m Module, options MCJITCompilerOptions) (ee ExecutionEngine, err error) {
121 fail := C.LLVMCreateMCJITCompilerForModule(&ee.C, m.C, &options.C, C.size_t(unsafe.Sizeof(C.struct_LLVMMCJITCompilerOptions{})), &cmsg)
123 ee.C = nil
130 func (ee ExecutionEngine) Dispose() { C.LLVMDisposeExecutionEngine(ee.C)
    [all...]
  /src/sys/external/isc/atheros_hal/dist/
ah_eeprom_v3.c 26 getPcdacInterceptsFromPcdacMinMax(HAL_EEPROM *ee,
33 const uint16_t *ip = ee->ee_version < AR_EEPROM_VER3_2 ?
46 fbin2freq(HAL_EEPROM *ee, uint16_t fbin)
50 return ee->ee_version <= AR_EEPROM_VER3_2 ?
56 fbin2freq_2p4(HAL_EEPROM *ee, uint16_t fbin)
60 return ee->ee_version <= AR_EEPROM_VER3_2 ?
69 readEepromFreqPierInfo(struct ath_hal *ah, HAL_EEPROM *ee)
78 if (ee->ee_version >= AR_EEPROM_VER4_0 &&
79 ee->ee_eepMap && !ee->ee_Amode)
1557 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
1669 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
1719 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
1745 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
1757 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
1775 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
    [all...]
ah_eeprom_v14.c 31 HAL_EEPROM_v14 *ee = AH_PRIVATE(ah)->ah_eeprom; local
32 const MODAL_EEP_HEADER *pModal = ee->ee_base.modalHeader;
33 const BASE_EEP_HEADER *pBase = &ee->ee_base.baseEepHeader;
118 *(int8_t *) val = ee->ee_antennaGainMax[1];
121 *(int8_t *) val = ee->ee_antennaGainMax[0];
135 HAL_EEPROM_v14 *ee = AH_PRIVATE(ah)->ah_eeprom; local
139 ee->ee_antennaGainMax[1] = (int8_t) v;
142 ee->ee_antennaGainMax[0] = (int8_t) v;
152 HAL_EEPROM_v14 *ee = AH_PRIVATE(ah)->ah_eeprom; local
156 *result = &ee->ee_base
219 HAL_EEPROM_v14 *ee = AH_PRIVATE(ah)->ah_eeprom; local
286 HAL_EEPROM_v14 *ee = AH_PRIVATE(ah)->ah_eeprom; local
301 HAL_EEPROM_v14 *ee = AH_PRIVATE(ah)->ah_eeprom; local
    [all...]
ah_eeprom_v4k.c 33 HAL_EEPROM_v4k *ee = AH_PRIVATE(ah)->ah_eeprom; local
34 const MODAL_EEP4K_HEADER *pModal = &ee->ee_base.modalHeader;
35 const BASE_EEP4K_HEADER *pBase = &ee->ee_base.baseEepHeader;
108 *(int8_t *) val = ee->ee_antennaGainMax;
122 HAL_EEPROM_v4k *ee = AH_PRIVATE(ah)->ah_eeprom; local
126 ee->ee_antennaGainMax = (int8_t) v;
136 HAL_EEPROM_v4k *ee = AH_PRIVATE(ah)->ah_eeprom; local
140 *result = &ee->ee_base;
141 *resultsize = sizeof(ee->ee_base);
149 eepromSwap(struct ar5416eeprom_4k *ee)
201 HAL_EEPROM_v4k *ee = AH_PRIVATE(ah)->ah_eeprom; local
269 HAL_EEPROM_v4k *ee = AH_PRIVATE(ah)->ah_eeprom; local
284 HAL_EEPROM_v4k *ee = AH_PRIVATE(ah)->ah_eeprom; local
    [all...]
ah_eeprom_v1.c 28 HAL_EEPROM_v1 *ee = AH_PRIVATE(ah)->ah_eeprom; local
56 *(uint16_t *) val = ee->ee_regDomain[0];
60 return ee->ee_rfKill ? HAL_OK : HAL_EIO;
63 return (ee->ee_protect & AR_EEPROM_PROTOTECT_WP_128_191) ?
81 HAL_EEPROM_v1 *ee = AH_PRIVATE(ah)->ah_eeprom; local
85 *result = ee;
86 *resultsize = sizeof(*ee);
104 HAL_EEPROM_v1 *ee = AH_PRIVATE(ah)->ah_eeprom; local
106 ath_hal_free(ee);
113 HAL_EEPROM_v1 *ee = AH_PRIVATE(ah)->ah_eeprom local
    [all...]
  /src/external/bsd/elftoolchain/dist/libdwarf/
dwarf_pro_expr.c 38 struct _Dwarf_P_Expr_Entry *ee; local
49 if ((ee = calloc(1, sizeof(*ee))) == NULL) {
54 STAILQ_INSERT_TAIL(&expr->pe_eelist, ee, ee_next);
56 ee->ee_loc.lr_atom = opcode;
57 ee->ee_loc.lr_number = val1;
58 ee->ee_loc.lr_number2 = val2;
59 ee->ee_loc.lr_offset = expr->pe_length;
63 return (ee);
69 struct _Dwarf_P_Expr_Entry *ee; local
112 struct _Dwarf_P_Expr_Entry *ee, *tee; local
179 struct _Dwarf_P_Expr_Entry *ee; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/certs/
setup.sh 157 # Primary leaf cert: ee-cert with default purpose: serverAuth
158 ./mkcert.sh genee server.example ee-key ee-cert ca-key ca-cert
159 # ee variants: expired, issuer-key2, issuer-name2, bad-pathlen
160 ./mkcert.sh genee server.example ee-key ee-expired ca-key ca-cert -days -1
161 ./mkcert.sh genee server.example ee-key ee-cert2 ca-key2 ca-cert2
162 ./mkcert.sh genee server.example ee-key ee-name2 ca-key ca-name
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_gpu_error.c 432 const struct intel_engine_coredump *ee)
439 ee->instdone.instdone);
441 if (ee->engine->class != RENDER_CLASS || INTEL_GEN(m->i915) <= 3)
445 ee->instdone.slice_common);
453 ee->instdone.sampler[slice][subslice]);
458 ee->instdone.row[slice][subslice]);
500 find_batch(const struct intel_engine_coredump *ee)
502 return __find_vma(ee->vma, "batch");
506 const struct intel_engine_coredump *ee)
511 err_printf(m, "%s command stream:\n", ee->engine->name)
677 const struct intel_engine_coredump *ee; local
740 const struct intel_engine_coredump *ee; local
936 struct intel_engine_coredump *ee = gt->engine; local
1364 struct intel_engine_coredump *ee; local
1453 struct intel_engine_coredump *ee; local
1485 struct intel_engine_coredump *ee; local
    [all...]
  /src/sys/external/isc/atheros_hal/dist/ar5212/
ar5111.c 221 const HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
232 tempOB = ee->ee_ob1;
233 tempDB = ee->ee_db1;
235 tempOB = ee->ee_ob2;
236 tempDB = ee->ee_db2;
238 tempOB = ee->ee_ob3;
239 tempDB = ee->ee_db3;
241 tempOB = ee->ee_ob4;
242 tempDB = ee->ee_db4;
249 rfXpdGainFixed = ee->ee_xgain[headerInfo11A]
390 const HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/
ripemd.d 220 ee = _state[4];
244 FF(aa, bb, cc, dd, ee, x[ 0], 11);
245 FF(ee, aa, bb, cc, dd, x[ 1], 14);
246 FF(dd, ee, aa, bb, cc, x[ 2], 15);
247 FF(cc, dd, ee, aa, bb, x[ 3], 12);
248 FF(bb, cc, dd, ee, aa, x[ 4], 5);
249 FF(aa, bb, cc, dd, ee, x[ 5], 8);
250 FF(ee, aa, bb, cc, dd, x[ 6], 7);
251 FF(dd, ee, aa, bb, cc, x[ 7], 9);
252 FF(cc, dd, ee, aa, bb, x[ 8], 11)
    [all...]
  /src/sys/arch/playstation2/ee/
timer.c 43 #include <playstation2/ee/eevar.h>
44 #include <playstation2/ee/intcvar.h>
45 #include <playstation2/ee/timervar.h>
46 #include <playstation2/ee/timerreg.h>
58 * EE timer usage
gs.c 38 #include <playstation2/ee/eevar.h>
39 #include <playstation2/ee/gsvar.h>
40 #include <playstation2/ee/gsreg.h>
41 #include <playstation2/ee/gifreg.h>
  /src/crypto/external/bsd/heimdal/dist/lib/wind/
bidi.c 56 struct range_entry ee = {cp, 0}; local
57 void *s = bsearch(&ee, _wind_ral_table, _wind_ral_table_size,
66 struct range_entry ee = {cp, 0}; local
67 void *s = bsearch(&ee, _wind_l_table, _wind_l_table_size,
errorlist.c 56 struct error_entry ee = {cp, 0, 0}; local
60 bsearch(&ee, _wind_errorlist_table,
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/executionengine/
llvm_executionengine.mli 43 engine is not garbage collected and must be destroyed with [dispose ee].
50 (** [dispose ee] releases the memory used by the execution engine and must be
54 (** [add_module m ee] adds the module [m] to the execution engine [ee]. *)
57 (** [remove_module m ee] removes the module [m] from the execution engine
58 [ee]. Raises [Error msg] if an error occurs. *)
61 (** [run_static_ctors ee] executes the static constructors of each module in
62 the execution engine [ee]. *)
65 (** [run_static_dtors ee] executes the static destructors of each module in
66 the execution engine [ee]. *
    [all...]
llvm_executionengine.ml 52 let add_global_mapping llval ptr ee =
53 add_global_mapping_ llval (Ctypes.raw_address_of_ptr (Ctypes.to_voidp ptr)) ee
55 let get_global_value_address name typ ee =
56 let vptr = get_global_value_address_ name ee in
62 let get_function_address name typ ee =
63 let fptr = get_function_address_ name ee in
  /src/sys/external/isc/atheros_hal/dist/ar5211/
ar5211_reset.c 302 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
306 ob2GHz = ee->ee_ob2GHz[0];
307 db2GHz = ee->ee_db2GHz[0];
309 ob2GHz = ee->ee_ob2GHz[1];
310 db2GHz = ee->ee_db2GHz[1];
922 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
926 *nft = ee->ee_noiseFloorThresh[0];
929 *nft = ee->ee_noiseFloorThresh[1];
932 *nft = ee->ee_noiseFloorThresh[2];
1062 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom local
1169 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
1230 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
1339 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
1519 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
2097 HAL_EEPROM *ee = AH_PRIVATE(ah)->ah_eeprom; local
    [all...]
  /src/sys/arch/playstation2/playstation2/
autoconf.c 37 #include <playstation2/ee/sifvar.h> /* sif_init */
interrupt.c 45 #include <playstation2/ee/eevar.h>
46 #include <playstation2/ee/intcvar.h>
47 #include <playstation2/ee/intcreg.h>
48 #include <playstation2/ee/dmacreg.h>
49 #include <playstation2/ee/dmacvar.h>
50 #include <playstation2/ee/timervar.h>
53 #include <playstation2/ee/gsvar.h> /* debug monitor */
91 /* initialize EE embedded device */
  /src/crypto/external/bsd/openssl.old/dist/test/certs/
setup.sh 163 # Primary leaf cert: ee-cert
164 # ee variants: expired, issuer-key2, issuer-name2, bad-pathlen
168 ./mkcert.sh genee server.example ee-key ee-cert ca-key ca-cert
169 ./mkcert.sh genee server.example ee-key ee-expired ca-key ca-cert -days -1
170 ./mkcert.sh genee server.example ee-key ee-cert2 ca-key2 ca-cert2
171 ./mkcert.sh genee server.example ee-key ee-name2 ca-key ca-name
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/certs/
setup.sh 157 # Primary leaf cert: ee-cert with default purpose: serverAuth
158 ./mkcert.sh genee server.example ee-key ee-cert ca-key ca-cert
159 # ee variants: expired, issuer-key2, issuer-name2, bad-pathlen
160 ./mkcert.sh genee server.example ee-key ee-expired ca-key ca-cert -days -1
161 ./mkcert.sh genee server.example ee-key ee-cert2 ca-key2 ca-cert2
162 ./mkcert.sh genee server.example ee-key ee-name2 ca-key ca-name
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/hx509/
test_ca.in 62 --certificate="FILE:cert-ee.pem" || exit 1
66 cert:FILE:cert-ee.pem \
76 cert:FILE:cert-ee.pem \
84 FILE:cert-ee.pem || exit 1
88 cert:FILE:cert-ee.pem \
97 FILE:cert-ee.pem || exit 1
101 cert:FILE:cert-ee.pem \
111 --certificate="FILE:cert-ee.pem" || exit 1
120 --certificate="FILE:cert-ee.pem" || exit 1
129 --certificate="FILE:cert-ee.pem" || exit
    [all...]
  /src/sys/arch/sandpoint/stand/altboot/
sip.c 138 uint16_t eedata[4], *ee; local
159 ee = eedata; en = data;
160 ee[0] = read_eeprom(l, 6);
161 ee[1] = read_eeprom(l, 7);
162 ee[2] = read_eeprom(l, 8);
163 ee[3] = read_eeprom(l, 9);
164 en[0] = ((*ee & 0x1) << 7);
165 ee++;
166 en[0] |= ((*ee & 0xFE00) >> 9);
167 en[1] = ((*ee & 0x1FE) >> 1)
    [all...]
  /src/external/gpl3/gcc/dist/contrib/header-tools/
graph-header-logs 110 ee = (fname, t)
111 if ee not in extra_edges:
112 extra_edges.append (ee)
163 ee = (t, n)
164 if ee not in extra_edges:
165 extra_edges.append (ee)
176 for ee in extra_edges:
177 string = ee[0] + " -> " + ee[1] + "[ color=red ];"
  /src/external/gpl3/gcc.old/dist/contrib/header-tools/
graph-header-logs 110 ee = (fname, t)
111 if ee not in extra_edges:
112 extra_edges.append (ee)
163 ee = (t, n)
164 if ee not in extra_edges:
165 extra_edges.append (ee)
176 for ee in extra_edges:
177 string = ee[0] + " -> " + ee[1] + "[ color=red ];"

Completed in 49 milliseconds

1 2 3 4 5 6