HomeSort by relevance Sort by last modified time
    Searched refs:store (Results 501 - 525 of 1381) sorted by null

<<21222324252627282930>>

  /external/mesa3d/src/mesa/main/
uniform_query.cpp 482 /* Store the data in the driver's requested type in the driver's storage
488 struct gl_uniform_driver_storage *const store = &uni->driver_storage[i]; local
489 uint8_t *dst = (uint8_t *) store->data;
491 store->element_stride - (vectors * store->vector_stride);
499 vectors, count, store->vector_stride, extra_stride);
502 dst += array_index * store->element_stride;
504 switch (store->format) {
514 dst += store->vector_stride;
536 dst += store->vector_stride
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_ppc.c 55 p->store = rtasm_exec_malloc(p->max_inst * PPC_INST_SIZE);
75 if (p->store != NULL) {
76 rtasm_exec_free(p->store);
78 p->store = NULL;
93 if (DISASSEM && p->store)
94 debug_printf("disassemble %p %p\n", p->store, p->csr);
96 if (p->store == p->error_overflow)
100 return (void (*)(void)) pointer_to_func(p->store);
109 debug_printf("%3u: 0x%08x\n", i, p->store[i]);
264 if (!p->store)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.c 55 p->store = rtasm_exec_malloc(p->max_inst * PPC_INST_SIZE);
75 if (p->store != NULL) {
76 rtasm_exec_free(p->store);
78 p->store = NULL;
93 if (DISASSEM && p->store)
94 debug_printf("disassemble %p %p\n", p->store, p->csr);
96 if (p->store == p->error_overflow)
100 return (void (*)(void)) pointer_to_func(p->store);
109 debug_printf("%3u: 0x%08x\n", i, p->store[i]);
264 if (!p->store)
    [all...]
  /external/libvpx/libvpx/vp9/common/arm/neon/
vp9_short_idct16x16_add_neon.asm 259 ; store the data
627 vst1.64 {d12}, [r9], r8 ; store the data
628 vst1.64 {d13}, [r9], r8 ; store the data
641 vst1.64 {d12}, [r9], r8 ; store the data
642 vst1.64 {d13}, [r9], r8 ; store the data
659 vst1.64 {d12}, [r9], r8 ; store the data
660 vst1.64 {d13}, [r9], r8 ; store the data
673 vst1.64 {d12}, [r9], r8 ; store the data
674 vst1.64 {d13}, [r9], r8 ; store the data
680 ; store the data output 8,9,10,11,12,13,14,1
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative/
rules_registry_with_cache.cc 61 // Returns the key to use for storing declarative rules in the state store.
301 extensions::StateStore* store = system.rules_store(); local
302 if (store)
303 store->RegisterKey(storage_key_);
343 StateStore* store = ExtensionSystem::Get(profile_)->rules_store();
344 if (store)
345 store->SetExtensionValue(extension_id, storage_key_, value.Pass());
400 extensions::StateStore* store = ExtensionSystem::Get(profile_)->rules_store(); local
401 if (!store)
404 store->GetExtensionValue(extension_id
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PropertiesTest.java 721 * @tests java.util.Properties#store(java.io.OutputStream, java.lang.String)
724 // Test for method void java.util.Properties.store(java.io.OutputStream,
737 myProps.store(out, "A Header");
759 * @tests java.util.Properties#store(java.io.Writer, java.lang.String)
771 myProps.store(new OutputStreamWriter(out), "A Header");
789 myProps.store((Writer) null, "some comments");
797 myProps.store(new OutputStreamWriter(new ByteArrayOutputStream()),
804 myProps.store(new OutputStreamWriter(new ByteArrayOutputStream()),
809 myProps.store(new OutputStreamWriter(new ByteArrayOutputStream()),
    [all...]
  /external/chromium/chrome/browser/resources/ntp/
apps.css 132 .app.web-store-entry > a {
176 We position the web store entry all by its lonesome in the top of the rightmost
181 .app.web-store-entry.loner {
187 html[dir=rtl] .app.web-store-entry.loner {
  /external/chromium_org/chrome/browser/policy/cloud/
component_cloud_policy_service.cc 56 // thread. Used to create the store on the right thread.
68 // Loads the initial policies from the store. |username| and |dm_token| are
174 // Store the current list of components in the cache.
185 cache_->Store(kComponentNamespaceCache, policy_type, data);
219 CloudPolicyStore* store,
224 store_(store),
345 void ComponentCloudPolicyService::OnStoreLoaded(CloudPolicyStore* store) {
346 DCHECK_EQ(store_, store);
359 void ComponentCloudPolicyService::OnStoreError(CloudPolicyStore* store) {
360 OnStoreLoaded(store);
    [all...]
user_cloud_policy_store_unittest.cc 74 void VerifyPolicyMap(CloudPolicyStore* store) {
75 EXPECT_EQ(2U, store->policy_map().size());
77 store->policy_map().Get(key::kPasswordManagerEnabled);
80 ASSERT_TRUE(store->policy_map().Get(key::kURLBlacklist));
84 void ExpectError(CloudPolicyStore* store, CloudPolicyStore::Status error) {
86 OnStoreError(AllOf(Eq(store),
174 TEST_F(UserCloudPolicyStoreTest, Store) {
178 // Store a simple policy and make sure it ends up as the currently active
181 store_->Store(policy_.policy());
196 // Store a simple policy and make sure the file exists
    [all...]
  /external/compiler-rt/lib/asan/
asan_rtl.cc 255 ASAN_REPORT_ERROR(store, true, 1)
256 ASAN_REPORT_ERROR(store, true, 2)
257 ASAN_REPORT_ERROR(store, true, 4)
258 ASAN_REPORT_ERROR(store, true, 8)
259 ASAN_REPORT_ERROR(store, true, 16)
270 ASAN_REPORT_ERROR_N(store, true)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 
  /art/compiler/dex/quick/arm/
utility_arm.cc 706 LIR* store = NULL; local
738 store = NewLIR3(opcode, r_src, reg_ptr, 0);
740 return store;
756 store = NewLIR3(opcode, r_src, rBase, r_index);
758 store = NewLIR4(opcode, r_src, rBase, r_index, scale);
760 return store;
901 LIR* store = NULL; local
915 store = NewLIR4(kThumb2StrdI8, r_src, r_src_hi, rBase, displacement >> 2);
917 store = StoreBaseDispBody(rBase, displacement, r_src, -1, kWord);
986 store = NewLIR3(opcode, r_src, rBase, encoded_disp)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_constant_expression.cpp 981 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 = substore
1210 ir_constant *store = NULL; local
    [all...]
  /external/mesa3d/src/glsl/
ir_constant_expression.cpp 981 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 = substore
1210 ir_constant *store = NULL; local
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/armv6/
loopfilter_v6.asm 177 str r9, [sp] ; store qs0 temporarily
178 str r8, [sp, #4] ; store ps0 temporarily
179 str r10, [sp, #8] ; store qs1 temporarily
180 str r7, [sp, #12] ; store ps1 temporarily
241 str r11, [src], pstep ; store op1
243 str r9, [src], pstep ; store op0 result
245 str r8, [src], pstep ; store oq0 result
247 str r10, [src], pstep ; store oq1
389 str r7, [sp, #12] ; store ps1 temporarily
391 str r10, [sp, #8] ; store qs1 temporaril
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SystemTest.java 109 float store = cfg.fontScale; local
120 cfg.fontScale = store;
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 70 "Missing value for expectation store")));
104 ExpectationStore store = ExpectationStore.parse(expectationFiles, ModeId.DEVICE); local
105 XmlGenerator generator = new XmlGenerator(store, appNameSpace, appPackageName,
  /dalvik/vm/mterp/armv5te/
OP_SPUT.S 23 $prebarrier @ releasing store
  /dalvik/vm/mterp/armv6t2/
OP_IPUT.S 1 %default { "store":"str", "sqnum":"0" }
43 $store r0, [r9, r3] @ obj.field (8/16/32 bits)<- r0
  /dalvik/vm/mterp/mips/
OP_SPUT.S 47 $prebarrier # releasing store
OP_SPUT_OBJECT.S 48 $prebarrier # releasing store
  /dalvik/vm/mterp/x86/
OP_APUT_OBJECT.S 33 movl %ecx,sReg0 # store the two classes for later
54 movl rINST,(%ecx) # store into array
  /external/chromium/chrome/browser/ui/webui/
new_tab_page_sync_handler.cc 54 net::CookieStore* store = local
59 std::string cookies = store->GetCookiesWithOptions(url, options);
  /external/chromium_org/content/test/data/indexeddb/
cursor_test.js 54 debug('Populating object store');
key_path_test.js 31 debug("Populating object store #" + count);

Completed in 635 milliseconds

<<21222324252627282930>>