Searched refs:store (Results 1 - 25 of 536) 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/v8/test/mjsunit/
H A Dtransition-elements-kind.js38 function store(a,x) { function
41 store([1.1], 'a');
42 store([1.1], 1.1);
43 %OptimizeFunctionOnNextCall(store);
47 store(b, 'a');
H A Dstore-dictionary.js28 // Test dictionary store ICs.
31 function store(obj) { obj.x = 42; } function
37 // Make the store ic in the 'store' function go into dictionary store
40 store(o);
48 // Attempt to store using the store ic in the 'store' function.
49 store(
[all...]
H A Dpolymorph-arrays.js110 function store(a, i, val) {
125 store(object_array, 1, 256);
126 store(js_array, 1, 256);
127 store(sparse_object_array, 1, 256);
128 store(sparse_js_array, 1, 256);
130 return store;
144 store = make_polymorphic_store_function();
145 store(object_array, 2, 257);
146 store = make_polymorphic_store_function();
147 store(js_arra
[all...]
H A Domit-constant-mapcheck.js59 function store(v) { function
64 assertEquals(5, store(5));
65 assertEquals(8, store(8));
66 %OptimizeFunctionOnNextCall(store);
67 assertEquals(10, store(10));
69 store(7);
/external/v8/test/mjsunit/regress/
H A Dregress-351261.js7 function store(a) { function
14 store(__v_8);
15 store(__v_7);
H A Dregress-331416.js41 function store(a, i, x) { function
44 store([1, 2, 3], "length", 3);
45 store(3);
46 store([1, 2, 3], 3, 3);
47 store(0, 0, 1);
48 %OptimizeFunctionOnNextCall(store);
50 store(a, 1, 1);
52 store(0, 0, 1);
H A Dregress-polymorphic-store.js38 function store(o, v) { function
42 store(o2, 0);
43 store(o1, 0);
44 store(o2, 0);
45 %OptimizeFunctionOnNextCall(store);
46 store(o1, 10);
H A Dregress-store-heapobject.js9 function store(o, v) { function
13 store(o, undefined);
14 store(o, undefined);
19 store(o, 1);
H A Dregress-crbug-319835.js35 function store(a, index) { function
42 store(training, -0x20000000);
43 store(training, -0x20000000 + 1);
44 store(training, -0x20000000);
45 store(training, -0x20000000 + 1);
46 %OptimizeFunctionOnNextCall(store);
50 store(a, i);
H A Dregress-clobbered-fp-regs.js30 function store(a, x, y) { function
49 store([1], 1, 1);
50 store([1], 1.1, 1);
51 store([1], 1.1, 1);
52 %OptimizeFunctionOnNextCall(store);
54 store([1], 1, 1)
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterMeshConvexHullShape.java34 * @param store
35 * the variable to store with coordinates of randomly selected selected point inside a convex hull
39 public void getRandomPoint(Vector3f store) { argument
40 super.getRandomPoint(store);
43 store.multLocal(FastMath.nextRandomFloat());
50 * @param store
51 * the variable to store with coordinates of randomly selected selected point inside a convex hull
57 public void getRandomPointAndNormal(Vector3f store, Vector3f normal) { argument
58 super.getRandomPointAndNormal(store, normal);
61 store
[all...]
H A DEmitterShape.java45 * @param store
46 * store variable for initial position
48 public void getRandomPoint(Vector3f store); argument
52 * @param store
53 * store variable for initial position
55 * store variable for initial normal
57 public void getRandomPointAndNormal(Vector3f store, Vector3f normal); argument
/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...]
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/resources/
H A Di18n.py10 def locale_selector(store, request):
13 def timezone_selector(store, request):
/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; }
/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/trace-viewer/third_party/webapp2/tests/
H A Dextras_sessions_test.py27 store = sessions.SessionStore(req, config={
31 session = store.get_session(factory=self.factory)
34 store.save_sessions(rsp)
42 store = sessions.SessionStore(req)
44 session = store.get_session(factory=self.factory)
48 store.save_sessions(rsp)
54 store.save_sessions(rsp)
61 store = sessions.SessionStore(req)
63 session = store.get_session(factory=self.factory)
71 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/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DCompactQuaternionArray.java86 protected void serialize(int i, Quaternion store) { argument
88 array[j] = store.getX();
89 array[j + 1] = store.getY();
90 array[j + 2] = store.getZ();
91 array[j + 3] = store.getW();
95 protected Quaternion deserialize(int i, Quaternion store) { argument
97 store.set(array[j], array[j + 1], array[j + 2], array[j + 3]);
98 return store;

Completed in 1160 milliseconds

1234567891011>>