Searched defs:store (Results 226 - 250 of 312) sorted by path

1234567891011>>

/external/jarjar/lib/
H A Dasm-commons-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DInMemoryResourceLoader.java31 * Content needs to be stored first using the {@link #store(String, String)} method.
55 public void store(String name, String contents) { method in class:InMemoryResourceLoader
/external/libmtp/src/
H A Dlibmtp.c2757 uint32_t store = 0x00000000; //Should this be 0xffffffffu instead? local
2764 store = 0x00000000U;
2797 store = storage->id;
2800 return store;
5003 * (e.g. folder) to store this track in. Since some
5011 * presents) to store this track in. Setting this to 0 will store
5080 * (e.g. folder) to store this track in. Since some
5088 * presents) to store this track in. Setting this to 0 will store
5556 uint32_t store; local
6770 uint32_t store; local
7054 uint32_t store; local
[all...]
H A Dptp.c724 * Get object 'handle' from device and store the data in newly
749 * Get object 'handle' from device and store the data in newly
802 * Get object 'handle' from device and store the data in newly
830 * Get thumb for object 'handle' from device and store the data in newly
881 * uint32_t* store - destination StorageID on Responder
889 * Upon success : uint32_t* store - Responder StorageID in which
897 ptp_sendobjectinfo (PTPParams* params, uint32_t* store, argument
908 ptp.Param1=*store;
915 *store=ptp.Param1;
1060 * uint32_t* store
1076 ptp_ek_sendfileobjectinfo(PTPParams* params, uint32_t* store, uint32_t* parenthandle, uint32_t* handle, PTPObjectInfo* objectinfo) argument
1908 ptp_canon_getobjectinfo(PTPParams* params, uint32_t store, uint32_t p2, uint32_t parent, uint32_t handle, PTPCANONFolderEntry** entries, uint32_t* entnum) argument
2596 ptp_mtp_sendobjectproplist(PTPParams* params, uint32_t* store, uint32_t* parenthandle, uint32_t* handle, uint16_t objecttype, uint64_t objectsize, MTPProperties *props, int nrofprops) argument
[all...]
/external/libpng/contrib/libtests/
H A Dpngvalid.c569 * to the sequential reader. It can also store the result of a PNG
605 struct png_store *store; /* Back pointer */ member in struct:store_pool
623 /* For cexcept.h exception handling - simply store one of these;
708 pool->store = ps;
779 png_error(ps->pwrite, "invalid store call");
784 png_error(ps->pwrite, "store new: OOM");
812 * below) call store_storefile to store the result with the given name and id.
1098 png_error(pp, "store state damaged");
1193 png_error(ps->pread, "store state damaged");
1220 png_error(pp, "bad store rea
[all...]
/external/libvpx/libvpx/test/
H A Dregister_state_check.h91 // Save the d8-d15 registers into store.
92 void vp9_push_neon(int64_t *store);
111 static bool StoreRegisters(int64_t store[8]) { argument
112 vp9_push_neon(store);
/external/libxml2/
H A Dtimsort.h281 TIM_SORT_MERGE(dst, run_stack, stack_curr, store); \
285 if (store->storage != NULL)\
287 free(store->storage);\
288 store->storage = NULL;\
319 static void TIM_SORT_RESIZE(TEMP_STORAGE_T *store, const size_t new_size) argument
321 if (store->alloc < new_size)
323 SORT_TYPE *tempstore = (SORT_TYPE *)realloc(store->storage, new_size * sizeof(SORT_TYPE));
329 store->storage = tempstore;
330 store->alloc = new_size;
334 static void TIM_SORT_MERGE(SORT_TYPE *dst, const TIM_SORT_RUN_T *stack, const int stack_curr, TEMP_STORAGE_T *store) argument
393 TIM_SORT_COLLAPSE(SORT_TYPE *dst, TIM_SORT_RUN_T *stack, int stack_curr, TEMP_STORAGE_T *store, const size_t size) argument
457 TEMP_STORAGE_T _store, *store; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
H A Dannotate.c96 GtkListStore *store; local
106 store = gtk_list_store_newv(MAX_ANN_COLS, col_types);
117 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(store));
118 g_object_unref(GTK_TREE_MODEL(store));
124 gtk_list_store_append(store, &iter);
140 gtk_list_store_set(store, &iter, ANN_COL__PERCENT, s, -1);
142 gtk_list_store_set(store, &iter, ANN_COL__OFFSET, s, -1);
144 gtk_list_store_set(store, &iter, ANN_COL__LINE, s, -1);
H A Dhists.c135 static void perf_gtk__add_callchain(struct rb_root *root, GtkTreeStore *store, argument
160 gtk_tree_store_append(store, &iter, &new_parent);
163 gtk_tree_store_set(store, &iter, 0, buf, -1);
166 gtk_tree_store_set(store, &iter, col, buf, -1);
184 perf_gtk__add_callchain(&node->rb_root, store, &iter, col,
208 GtkTreeStore *store; local
237 store = gtk_tree_store_newv(nr_cols, col_types);
276 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(store));
278 g_object_unref(GTK_TREE_MODEL(store));
292 gtk_tree_store_append(store,
[all...]
/external/llvm/lib/CodeGen/
H A DMachineSink.cpp253 // Walk the basic block bottom-up. Remember if we saw a store.
635 bool store = true; local
636 if (!MI->isSafeToMove(TII, AA, store)) {
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1338 const StoreInst* store = cast<StoreInst>(I); local
1342 << (store->isVolatile() ? "true" : "false")
1344 if (store->getAlignment())
1346 << store->getAlignment() << ");";
1347 if (store->isAtomic()) {
1348 StringRef Ordering = ConvertAtomicOrdering(store->getOrdering());
1349 StringRef CrossThread = ConvertAtomicSynchScope(store->getSynchScope());
/external/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAggrCopies.cpp32 // Lower MemTransferInst or load-store pair to loop
63 // store at dstAddr+ind
127 if (StoreInst *store = dyn_cast<StoreInst>(use)) {
128 if (store->getOperand(0) != load) //getValueOperand
166 StoreInst *store = dyn_cast<StoreInst>(*load->user_begin()); local
168 Value *dstAddr = store->getOperand(1);
172 convertTransferToLoop(store, srcAddr, dstAddr, len, load->isVolatile(),
173 store->isVolatile(), Context, F);
175 store->eraseFromParent();
/external/llvm/test/Bindings/Ocaml/
H A Dvmcore.ml1280 * CHECK: store volatile i32 %P2, i32* %build_alloca, align 4
1295 let store = build_store p2 alloca b in var
1296 ignore(set_volatile true store);
1297 ignore(set_alignment 4 store);
1298 insist(true = is_volatile store);
1299 insist(4 = alignment store);
1320 * CHECK: store{{.*}}build_global_string1{{.*}}p
/external/markdown/markdown/
H A Dpreprocessors.py52 def store(self, html, safe=False): member in class:HtmlStash
77 """Remove html blocks from the text and store them for later retrieval."""
154 self.markdown.htmlStash.store(block.strip()))
165 self.markdown.htmlStash.store(block.strip()))
180 self.markdown.htmlStash.store('\n\n'.join(items)))
184 new_blocks.append(self.markdown.htmlStash.store('\n\n'.join(items)))
192 """ Remove reference definitions from text and store for later use. """
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_llvm.c600 /* Unaligned store due to the vertex header */
630 /* store vertex header for each of the n vertices */
656 /* store for each of the n vertices */
785 /* Unaligned store */
840 /* store transformed outputs */
1259 /* store original positions in clip before further manipulation */
1278 /* store temporary clipping boolean value */
1290 /* store clipmask in vertex header,
1313 draw_llvm_make_variant_key(struct draw_llvm *llvm, char *store) argument
1319 key = (struct draw_llvm_variant_key *)store;
[all...]
H A Ddraw_pipe_util.c79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr ); local
81 if (store == NULL)
86 FREE(store);
91 stage->tmp[i] = (struct vertex_header *)(store + i * MAX_VERTEX_SIZE);
H A Ddraw_pt_fetch_shade_pipeline_llvm.c70 char store[DRAW_LLVM_MAX_VARIANT_KEY_SIZE]; local
123 key = draw_llvm_make_variant_key(fpme->llvm, store);
/external/mesa3d/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.h56 uint32_t *store; /**< instruction buffer */ member in struct:ppc_function
161 /** vector store: store vR at mem[vA+vB] */
290 ** scalar load/store
H A Drtasm_x86sse.h53 unsigned char *store; member in struct:x86_function
/external/mesa3d/src/glsl/
H A Dir_constant_expression.cpp981 ir_constant *&store, int &offset) const
984 store = (ir_constant *)hash_table_find(variable_context, var);
987 store = NULL;
1021 ir_constant *&store, int &offset) const
1026 store = 0;
1039 store = 0;
1047 store = 0;
1054 store = substore->get_array_element(index);
1059 store = substore;
1064 store
980 constant_referenced(struct hash_table *variable_context, ir_constant *&store, int &offset) const argument
1020 constant_referenced(struct hash_table *variable_context, ir_constant *&store, int &offset) const argument
1129 constant_referenced(struct hash_table *variable_context, ir_constant *&store, int &offset) const argument
1210 ir_constant *store = NULL; local
[all...]
H A Dlinker.cpp1515 bool store(struct gl_context *ctx, struct gl_shader_program *prog,
1837 tfeedback_decl::store(struct gl_context *ctx, struct gl_shader_program *prog, function in class:tfeedback_decl
1905 * glTransformFeedbackVaryings() and store them in tfeedback_decl objects.
2226 if (!tfeedback_decls[i].store(ctx, prog, &prog->LinkedTransformFeedback,
2241 if (!tfeedback_decls[i].store(ctx, prog,
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_eu.h112 struct brw_instruction *store; member in struct:brw_compile
133 * Just store the instruction pointer(an index).
799 return &p->store[p->nr_insn];
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_context.h595 struct radeon_store store; member in struct:r200_context
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_context.h408 struct radeon_store store; member in struct:r100_context
/external/mesa3d/src/mesa/main/
H A Dattrib.c1568 struct gl_pixelstore_attrib *store = local
1570 copy_pixelstore(ctx, &ctx->Pack, store);
1571 _mesa_reference_buffer_object(ctx, &store->BufferObj, NULL);
1577 struct gl_pixelstore_attrib *store = local
1579 copy_pixelstore(ctx, &ctx->Unpack, store);
1580 _mesa_reference_buffer_object(ctx, &store->BufferObj, NULL);

Completed in 688 milliseconds

1234567891011>>