Searched defs:load (Results 1 - 25 of 394) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/puff/
H A Dpufftest.c58 if load() returns NULL). If the input file was empty or could not be opened
60 local void *load(const char *name, size_t *len) function
117 source = load(name, &len);
/external/valgrind/main/perf/
H A Dtinycc.c699 #define DT_AUXILIARY 0x7ffffffd /* Shared object to load before self */
3398 /* fp load */
3855 /* fp load */
4730 /* fp load */
5187 /* fp load */
5488 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
5736 /* load 'r' from value 'sv' */
5737 void load(int r, SValue *sv)
5752 load(r, &v1);
6320 /* load o
5735 void load(int r, SValue *sv) function
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_mips_toIR.c424 /* Do a endian load of a 32-bit word, regardless of the endianness of the
894 static IRExpr *load(IRType ty, IRExpr * addr) function
2301 putIReg(regRd, mkWidenFrom32(ty, load(Ity_I32, mkexpr(t1)),
2309 putIReg(regRd, load(Ity_I64, mkexpr(t1)));
2316 putIReg(regRd, unop(Iop_8Uto64, load(Ity_I8,
2319 putIReg(regRd, unop(Iop_8Uto32, load(Ity_I8,
2326 putIReg(regRd, mkWidenFrom32(ty, load(Ity_I32, mkexpr(t1)),
2335 unop(Iop_16Uto64, load(Ity_I16, mkexpr(t1))));
2338 unop(Iop_16Uto32, load(Ity_I16, mkexpr(t1))));
2346 unop(Iop_8Sto64, load(Ity_I
[all...]
H A Dguest_s390_toIR.c256 load(IRType type, IRExpr *addr) function
2678 assign(op2, load(Ity_I32, mkexpr(op2addr)));
2694 assign(op2, load(Ity_I32, mkexpr(op2addr)));
2710 assign(op2, load(Ity_I64, mkexpr(op2addr)));
2726 assign(op2, unop(Iop_32Sto64, load(Ity_I32, mkexpr(op2addr))));
2809 assign(op1, load(Ity_I32, mkexpr(op1addr)));
2826 assign(op1, load(Ity_I64, mkexpr(op1addr)));
2844 assign(op2, unop(Iop_16Sto32, load(Ity_I16, mkexpr(op2addr))));
2860 assign(op2, unop(Iop_16Sto32, load(Ity_I16, mkexpr(op2addr))));
3039 assign(op2, load(Ity_I3
[all...]
H A Dhost_s390_defs.h119 S390_INSN_LOAD, /* load register from memory */
382 } load; member in union:__anon32092::__anon32093
H A Dir_inject.c82 load(IREndness endian, IRType type, HWord haddr) function
203 opnd1 = load(endian, iricb.t_opnd1, iricb.opnd1);
211 opnd1 = load(endian, iricb.t_opnd1, iricb.opnd1);
218 opnd2 = load(endian, iricb.t_opnd2, iricb.opnd2);
228 opnd1 = load(endian, iricb.t_opnd1, iricb.opnd1);
229 opnd2 = load(endian, iricb.t_opnd2, iricb.opnd2);
230 opnd3 = load(endian, iricb.t_opnd3, iricb.opnd3);
239 opnd1 = load(endian, iricb.t_opnd1, iricb.opnd1);
240 opnd2 = load(endian, iricb.t_opnd2, iricb.opnd2);
241 opnd3 = load(endia
[all...]
/external/tcpdump/
H A Dprint-eigrp.c134 u_int8_t load; member in struct:eigrp_tlv_ip_int_t
154 u_int8_t load; member in struct:eigrp_tlv_ip_ext_t
173 u_int8_t load; member in struct:eigrp_tlv_at_int_t
192 u_int8_t load; member in struct:eigrp_tlv_at_ext_t
344 printf("\n\t delay %u ms, bandwidth %u Kbps, mtu %u, hop %u, reliability %u, load %u",
350 tlv_ptr.eigrp_tlv_ip_int->load);
381 printf("\n\t delay %u ms, bandwidth %u Kbps, mtu %u, hop %u, reliability %u, load %u",
387 tlv_ptr.eigrp_tlv_ip_ext->load);
413 printf("\n\t delay %u ms, bandwidth %u Kbps, mtu %u, hop %u, reliability %u, load %u",
419 tlv_ptr.eigrp_tlv_at_int->load);
[all...]
/external/srec/srec/AcousticState/include/
H A DSR_AcousticState.h64 ESR_ReturnCode(*load)(SR_Recognizer* recognizer, const LCHAR* filename); member in struct:SR_AcousticState_t
/external/srec/srec/Nametag/include/
H A DSR_Nametags.h51 ESR_ReturnCode(*load)(struct SR_Nametags_t* self, const LCHAR* filename); member in struct:SR_Nametags_t
/external/srec/srec/Semproc/include/
H A DSR_SemanticGraph.h62 ESR_ReturnCode(*load)(struct SR_SemanticGraph_t* self, wordmap* ilabels, const LCHAR* basename, int num_words_to_add); member in struct:SR_SemanticGraph_t
/external/smack/src/org/jivesoftware/smackx/packet/
H A DVCard.java78 * // To load VCard:
81 * vCard.load(conn); // load own VCard
82 * vCard.load(conn, "joe@foo.bar"); // load someone's VCard
537 public void load(Connection connection) throws XMPPException { method in class:VCard
547 public void load(Connection connection, String user) throws XMPPException { method in class:VCard
/external/replicaisland/src/com/replica/replicaisland/
H A DSoundSystem.java62 public Sound load(int resource) { method in class:SoundSystem
71 result.soundId = mSoundPool.load(context, resource, 1);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/qemu/distrib/mini-glib/src/
H A Dglib-mini.c603 // load < min_load i.e.
608 // load > max_load
611 uint64_t load = (uint64_t)count * HASH_LOAD_SCALE; local
614 if (load < min_load || load > max_load) {
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_blit_A.c238 Uint64 load; local
240 load = 0x00fefefe00fefefeULL;/* alpha128 mask */
241 movq_m2r(load, mm4); /* alpha128 mask -> mm4 */
242 load = 0x0001010100010101ULL;/* !alpha128 mask */
243 movq_m2r(load, mm3); /* !alpha128 mask -> mm3 */
1645 /* load in the source, and dst. */
1887 Uint64 load; local
1890 load = alpha;
1893 movq_m2r(load, mm0); /* alpha(0000000A) -> mm0 */
1901 load
2026 Uint64 load; local
[all...]
H A DSDL_stretch.c82 unsigned char load, store; local
96 load = LOAD_BYTE;
101 load = LOAD_WORD;
127 *eip++ = load;
/external/qemu/include/hw/android/goldfish/
H A Dpipe.h107 /* Called to load the sate of a pipe from a QEMUFile. This will always
118 void* (*load)( void* hwpipe, void* pipeOpaque, const char* args, QEMUFile* file); member in struct:__anon29711
/external/qemu/target-arm/
H A Dop_helper.c504 const int load = (insn & (1 << 21)) != 0; local
521 if (load) {
529 if (load) {
544 if (load) {
558 if (load) {
H A Dtranslate.c3405 /* Single load/store */
3426 /* load/store multiple */
3465 /* load */
3901 /* Translate a NEON load/store element instruction. Return nonzero if the
3914 int load; local
3925 load = (insn & (1 << 21)) != 0;
3962 if (!load) {
4064 if (load) {
6406 /* load a 32-bit value from a register and perform a 64-bit accumulate. */
6421 /* load an
7320 int load; local
[all...]
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/DataEntryWriterFactory.class DataEntryWriterFactory.java package proguard public ...
/external/proguard/src/proguard/evaluation/
H A DVariables.java208 public Value load(int index) method in class:Variables
227 return load(index).integerValue();
236 return load(index).longValue();
245 return load(index).floatValue();
254 return load(index).doubleValue();
263 return load(index).referenceValue();
272 return load(index).instructionOffsetValue();
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 840 milliseconds

1234567891011>>