HomeSort by relevance Sort by last modified time
    Searched refs:store_size (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_eu.c 182 p->store_size = 1024;
183 p->store = rzalloc_array(mem_ctx, struct brw_instruction, p->store_size);
brw_eu_emit.c 704 if (p->nr_insn + 1 > p->store_size) {
706 printf("incresing the store size to %d\n", p->store_size << 1);
707 p->store_size <<= 1;
709 struct brw_instruction, p->store_size);
    [all...]
brw_eu.h 113 int store_size; member in struct:brw_compile
  /external/llvm/bindings/ocaml/target/
llvm_target.ml 31 external store_size : DataLayout.t -> Llvm.lltype -> Int64.t = "llvm_store_size"
llvm_target.mli 63 external store_size : DataLayout.t -> Llvm.lltype -> Int64.t = "llvm_store_size"
  /external/llvm/test/Bindings/Ocaml/
target.ml 44 ignore (store_size td sty);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu.c 182 p->store_size = 1024;
183 p->store = rzalloc_array(mem_ctx, struct brw_instruction, p->store_size);
brw_eu_emit.c 704 if (p->nr_insn + 1 > p->store_size) {
706 printf("incresing the store size to %d\n", p->store_size << 1);
707 p->store_size <<= 1;
709 struct brw_instruction, p->store_size);
    [all...]
brw_eu.h 113 int store_size; member in struct:brw_compile
  /external/llvm/include/llvm/ADT/
Hashing.h 396 size_t store_size = sizeof(value) - offset; local
397 if (buffer_ptr + store_size > buffer_end)
400 memcpy(buffer_ptr, value_data + offset, store_size);
401 buffer_ptr += store_size;
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_cookie_view.cc 666 int store_size = gtk_tree_model_iter_n_children(GTK_TREE_MODEL(store), NULL); local
667 if (store_size == 1)
670 DCHECK_EQ(2, store_size);
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_chrome_cookie_view.cc 657 int store_size = gtk_tree_model_iter_n_children(GTK_TREE_MODEL(store), NULL); local
658 if (store_size == 1)
661 DCHECK_EQ(2, store_size);
  /external/chromium_org/v8/src/
hydrogen-instructions.cc 3421 HStoreNamedField* store_size = HStoreNamedField::New(zone, context(), local
    [all...]

Completed in 778 milliseconds