Searched defs:store (Results 1 - 25 of 216) sorted by relevance

123456789

/external/v8/test/mjsunit/regress/
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)
H A Dregress-351261.js7 function store(a) { function
14 store(__v_8);
15 store(__v_7);
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-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);
/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 Dmegamorphic-callbacks.js32 function store(o) { function
46 store(o);
62 // Perform the store checks.
64 assertEquals(200, o.y_mirror, "normal store");
65 store(o);
66 assertEquals(42, o.y_mirror, "ic store");
/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
H A DEmitterMeshFaceShape.java55 * @param store
56 * the variable to store with coordinates of randomly selected selected point on a random face
59 public void getRandomPoint(Vector3f store) { argument
65 store.set(Vector3f.ZERO);
66 store.addLocal(vertices.get(meshIndex).get(vertIndex));
67 store.addLocal((vertices.get(meshIndex).get(vertIndex + 1).x - vertices.get(meshIndex).get(vertIndex).x) * moveFactor, (vertices.get(meshIndex).get(vertIndex + 1).y - vertices.get(meshIndex).get(vertIndex).y) * moveFactor, (vertices.get(meshIndex).get(vertIndex + 1).z - vertices.get(meshIndex).get(vertIndex).z) * moveFactor);
70 store.addLocal((vertices.get(meshIndex).get(vertIndex + 2).x - store.x) * moveFactor, (vertices.get(meshIndex).get(vertIndex + 2).y - store.y) * moveFactor, (vertices.get(meshIndex).get(vertIndex + 2).z - store
82 getRandomPointAndNormal(Vector3f store, Vector3f normal) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DJmeFormatter.java53 private StringBuffer store = new StringBuffer(); field in class:JmeFormatter
66 store.setLength(0);
67 format.format(args, store, null);
77 sb.append(store.toString()).append(" ");
/external/libavc/common/armv8/
H A Dih264_intra_pred_luma_16x16_av8.s321 b store
338 store: label
H A Dih264_intra_pred_chroma_av8.s153 b store
166 b store
183 b store
190 store: label
/external/apache-http/src/org/apache/http/client/protocol/
H A DClientContextConfigurer.java66 public void setCookieStore(final CookieStore store) { argument
67 this.context.setAttribute(COOKIE_STORE, 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; }
/external/icu/icu4c/source/test/perf/perldriver/
H A DOutput.pm315 sub store { subroutine
/external/jetty/src/java/org/eclipse/jetty/security/
H A DCrossContextPsuedoSession.java32 void store(T data, HttpServletResponse response); method in interface:CrossContextPsuedoSession
/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;
H A DCompactVector3Array.java86 protected void serialize(int i, Vector3f store) { argument
88 array[j] = store.getX();
89 array[j+1] = store.getY();
90 array[j+2] = store.getZ();
94 protected Vector3f deserialize(int i, Vector3f store) { argument
96 store.set(array[j], array[j+1], array[j+2]);
97 return store;
/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/mesa3d/src/gallium/auxiliary/draw/
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);
/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...]

Completed in 1615 milliseconds

123456789