Searched refs:store (Results 1 - 25 of 619) sorted by relevance

1234567891011>>

/external/e2fsprogs/tests/progs/test_data/
H A Dtest.icount11 store 0 0
15 store 20001 0
21 # OK, now let's test fetch and store. We also test the boundary cases
25 store 1 1
27 store 1 2
29 store 1 3
31 store 1 1
33 store 1 0
36 store 20000 0
38 store 2000
[all...]
/external/selinux/libsemanage/src/
H A Dsemanage.conf23 # "direct" - libsemanage will write directly to a module store.
31 module-store = direct
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/data/
H A DSessionInfoStoreTest.java31 private SessionInfoStore store; field in class:SessionInfoStoreTest
35 store = new SessionInfoStore();
40 assertEquals(Collections.emptyList(), store.getInfos());
41 assertTrue(store.isEmpty());
46 store.visitSessionInfo(new SessionInfo("A", 123, 456));
47 assertFalse(store.isEmpty());
53 store.visitSessionInfo(a);
55 store.visitSessionInfo(b);
57 store.visitSessionInfo(c);
58 assertEquals(Arrays.asList(b, a, c), store
[all...]
H A DExecutionDataStoreTest.java36 private ExecutionDataStore store; field in class:ExecutionDataStoreTest
42 store = new ExecutionDataStore();
48 assertNull(store.get(123));
49 assertFalse(store.contains("org/jacoco/example/Foo"));
50 store.accept(this);
57 store.put(new ExecutionData(1000, "Sample", probes));
58 final ExecutionData data = store.get(1000);
60 assertTrue(store.contains("Sample"));
61 store.accept(this);
70 store
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_normals.c52 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
56 if (!store->NormalTransform)
67 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
71 &store->normal ); /* resulting normals */
74 store->normal.stride = 4 * sizeof(GLfloat);
77 store->normal.stride = 0;
80 VB->AttribPtr[_TNL_ATTRIB_NORMAL] = &store->normal;
88 * Examine current GL state and set the store->NormalTransform pointer
94 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
99 store
152 struct normal_stage_data *store; local
170 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
[all...]
H A Dt_vb_texmat.c59 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
71 (void) TransformRaw( &store->texcoord[i],
75 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
89 struct texmat_stage_data *store; local
92 stage->privatePtr = CALLOC(sizeof(*store));
93 store = TEXMAT_STAGE_DATA(stage);
94 if (!store)
98 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
106 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
109 if (store) {
[all...]
H A Dt_vb_vertex.c140 struct vertex_stage_data *store = (struct vertex_stage_data *)stage->privatePtr; local
156 VB->EyePtr = TransformRaw( &store->eye,
161 VB->ClipPtr = TransformRaw( &store->clip,
184 store->ormask = 0;
185 store->andmask = CLIP_FRUSTUM_BITS;
190 &store->proj,
191 store->clipmask,
192 &store->ormask,
193 &store->andmask,
200 store
236 struct vertex_stage_data *store; local
261 struct vertex_stage_data *store = VERTEX_STAGE_DATA(stage); local
[all...]
H A Dt_vb_points.c53 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
61 GLfloat (*size)[4] = store->PointSize.data;
72 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize;
83 struct point_stage_data *store; local
84 stage->privatePtr = malloc(sizeof(*store));
85 store = POINT_STAGE_DATA(stage);
86 if (!store)
89 _mesa_vector4f_alloc( &store->PointSize, 0, VB->Size, 32 );
97 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
98 if (store) {
[all...]
H A Dt_vb_light.c197 update_materials(struct gl_context *ctx, struct light_stage_data *store) argument
201 for (i = 0 ; i < store->mat_count ; i++) {
203 COPY_CLEAN_4V(store->mat[i].current, store->mat[i].size, store->mat[i].ptr);
205 STRIDE_F(store->mat[i].ptr, store->mat[i].stride);
209 _mesa_update_material( ctx, store->mat_bitmask );
223 struct vertex_buffer *VB, struct light_stage_data *store)
227 store
222 prepare_materials(struct gl_context *ctx, struct vertex_buffer *VB, struct light_stage_data *store) argument
328 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local
421 struct light_stage_data *store; local
452 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local
[all...]
H A Dt_vb_program.c128 do_ndc_cliptest(struct gl_context *ctx, struct vp_stage_data *store) argument
135 store->ormask = 0;
136 store->andmask = CLIP_FRUSTUM_BITS;
143 &store->ndcCoords,
144 store->clipmask,
145 &store->ormask,
146 &store->andmask,
153 store->clipmask,
154 &store->ormask,
155 &store
314 struct vp_stage_data *store = VP_STAGE_DATA(stage); local
514 struct vp_stage_data *store; local
536 struct vp_stage_data *store = VP_STAGE_DATA(stage); local
[all...]
/external/curl/lib/
H A Dparsedate.h28 CURLcode Curl_gmtime(time_t intime, struct tm *store);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStoreRef.h1 //== StoreRef.h - Smart pointer for store objects ---------------*- C++ -*--==//
31 Store store; member in class:clang::ento::StoreRef
40 return x.store == store;
46 Store getStore() const { return store; }
H A DStore.h55 /// \param[in] store The analysis state.
61 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0;
64 /// \param[in] store The analysis state.
70 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0;
72 virtual StoreRef BindDefault(Store store, const MemRegion *R, SVal V);
74 /// \brief Create a new store with the specified binding removed.
75 /// \param ST the original store, that is the basis for the new store.
79 /// getInitialStore - Returns the initial "empty" store representing the
144 virtual StoreRef removeDeadBindings(Store store, cons
152 incrementReferenceCount(Store store) argument
157 decrementReferenceCount(Store store) argument
250 StoreRef(Store store, StoreManager & smgr) argument
[all...]
/external/autotest/server/hosts/
H A Dhost_info_unittest.py111 self.store = host_info.InMemoryHostInfoStore()
121 """Test that the first call to get gets the data from store."""
122 self.store.info = host_info.HostInfo(['label1'], {'attrib1': 'val1'})
123 got = self.store.get()
129 self.store.info = host_info.HostInfo(['label1'], {'attrib1': 'val1'})
130 got = self.store.get()
133 self.store.info = host_info.HostInfo(['label1', 'label2'], {})
134 got = self.store.get()
140 self.store.info = host_info.HostInfo(['label1'], {'attrib1': 'val1'})
141 got = self.store
[all...]
/external/libhevc/common/arm/
H A Dihevc_padding.s122 vst1.8 {d0,d1},[r4]! @128/8 = 16 bytes store
123 vst1.8 {d0,d1},[r4]! @ 16 bytes store
124 vst1.8 {d0,d1},[r4]! @ 16 bytes store
125 vst1.8 {d0,d1},[r4]! @ 16 bytes store
126 vst1.8 {d0,d1},[r4] @ 16 bytes store
130 vst1.8 {d2,d3},[r5]! @128/8 = 16 bytes store
131 vst1.8 {d2,d3},[r5]! @128/8 = 16 bytes store
132 vst1.8 {d2,d3},[r5]! @128/8 = 16 bytes store
133 vst1.8 {d2,d3},[r5]! @128/8 = 16 bytes store
134 vst1.8 {d2,d3},[r5] @128/8 = 16 bytes store
[all...]
/external/zopfli/src/zopfli/
H A Dsqueeze.h43 ZopfliLZ77Store* store);
58 ZopfliLZ77Store* store);
H A Dlz77.h51 void ZopfliInitLZ77Store(ZopfliLZ77Store* store);
52 void ZopfliCleanLZ77Store(ZopfliLZ77Store* store);
55 ZopfliLZ77Store* store);
127 ZopfliLZ77Store* store);
/external/curl/src/
H A Dtool_helpers.c70 int SetHTTPrequest(struct OperationConfig *config, HttpReq req, HttpReq *store) argument
81 if((*store == HTTPREQ_UNSPEC) ||
82 (*store == req)) {
83 *store = req;
88 reqname[req], reqname[*store]);
H A Dtool_helpers.h29 HttpReq *store);
/external/skia/src/effects/gradients/
H A DSk4fGradientPriv.h54 // - store() Store one Sk4f to dest. Optionally handles premul, color space
57 // - store(count) Store the Sk4f value repeatedly to dest, count times.
76 static void store(const Sk4f& c, Type* dst) { function in struct:__anon17012::DstTraits
78 // c is prescaled by 255, just store.
79 SkNx_cast<uint8_t>(c).store(dst);
85 static void store(const Sk4f& c, Type* dst, int n) { function in struct:__anon17012::DstTraits
87 store(c, &pmc);
97 store(c0, dst + 0);
98 store(c1, dst + 1);
99 store(c
114 static void store(const Sk4f& c, Type* dst) { function in struct:__anon17012::DstTraits
119 static void store(const Sk4f& c, Type* dst, int n) { function in struct:__anon17012::DstTraits
142 static void store(const Sk4f& c, Type* dst) { function in struct:__anon17012::DstTraits
146 static void store(const Sk4f& c, Type* dst, int n) { function in struct:__anon17012::DstTraits
171 static void store(const Sk4f& c, Type* dst) { function in struct:__anon17012::DstTraits
175 static void store(const Sk4f& c, Type* dst, int n) { function in struct:__anon17012::DstTraits
[all...]
/external/selinux/gui/
H A DdomainsPage.py65 self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
66 self.view.set_model(self.store)
67 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
72 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
96 self.store.clear()
102 iter = self.store.append()
103 self.store.set_value(iter, 0, domain)
106 self.store.set_value(iter, 1, _("Permissive"))
108 self.store.set_value(iter, 1, "")
114 store, ite
[all...]
H A DloginsPage.py60 self.store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
61 self.view.set_model(self.store)
62 self.store.set_sort_column_id(0, gtk.SORT_ASCENDING)
82 self.store.clear()
87 iter = self.store.append()
88 self.store.set_value(iter, 0, k)
89 self.store.set_value(iter, 1, dict[k][0])
90 self.store.set_value(iter, 2, range)
115 store, iter = self.view.get_selection().get_selected()
116 self.loginsNameEntry.set_text(store
[all...]
/external/selinux/libsemanage/utils/
H A Dsemanage_migrate_store57 def copy_module(store, name, base):
66 root = oldstore_path(store)
68 root = oldmodules_path(store)
70 bottomdir = bottomdir_path(store)
91 def migrate_store(store):
93 oldstore = oldstore_path(store);
94 oldmodules = oldmodules_path(store);
95 disabledmodules = disabledmodules_path(store);
96 newstore = newstore_path(store);
97 newmodules = newmodules_path(store);
[all...]
/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph_tests/
H A Dtest_altgraph.py17 self.store = {}
20 self.store[head] = self.store[tail] = None
25 self.assertEqual(self.g.number_of_nodes(), len(self.store))
/external/libavc/common/arm/
H A Dih264_padding_neon.s180 vst1.8 {q0}, [r4], r1 @ 16 bytes store
182 vst1.8 {q1}, [r4], r1 @ 16 bytes store
186 vst1.8 {q2}, [r4], r1 @ 16 bytes store
188 vst1.8 {q3}, [r4], r1 @ 16 bytes store
192 vst1.8 {q0}, [r4], r1 @ 16 bytes store
195 vst1.8 {q1}, [r4], r1 @ 16 bytes store
199 vst1.8 {q2}, [r4], r1 @ 16 bytes store
200 vst1.8 {q3}, [r4], r1 @ 16 bytes store
209 vst1.8 {q0}, [r4]! @ 16 bytes store
212 vst1.8 {q1}, [r4]! @ 16 bytes store
[all...]

Completed in 671 milliseconds

1234567891011>>