Searched defs:instances (Results 1 - 25 of 50) sorted by relevance

12

/external/parameter-framework/upstream/test/functional-tests/include/
H A DConfig.hpp45 * { .instances = "fuu" } <=> { &Config::instances, "fuu" }
61 std::string instances; member in struct:parameterFramework::Config
/external/junit-params/src/test/java/junitparams/
H A DObjectStringificationTest.java80 static int instances = 0; field in class:ObjectStringificationTest.A
84 if (++instances > 1) {
/external/mesa3d/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_draw.h44 uint32_t instances, enum a4xx_index_size idx_type,
66 OUT_RING(ring, instances); /* NumInstances */
40 fd5_draw(struct fd_batch *batch, struct fd_ringbuffer *ring, enum pc_di_primtype primtype, enum pc_di_vis_cull_mode vismode, enum pc_di_src_sel src_sel, uint32_t count, uint32_t instances, enum a4xx_index_size idx_type, uint32_t idx_size, uint32_t idx_offset, struct pipe_resource *idx_buffer) argument
/external/skia/tests/
H A DLRUCacheTest.cpp27 int instances = 0; local
33 test.insert(i, std::unique_ptr<Value>(new Value(i * i, &instances)));
37 REPORTER_ASSERT(r, kSize == instances);
40 REPORTER_ASSERT(r, i == instances);
42 REPORTER_ASSERT(r, (int) test.count() == instances);
45 REPORTER_ASSERT(r, 0 == instances);
49 int instances = 0; local
58 test.insert(k, std::unique_ptr<Value>(new Value(k, &instances)));
61 REPORTER_ASSERT(r, kSize == instances);
69 REPORTER_ASSERT(r, 0 == instances);
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_draw.h49 uint8_t instances,
83 OUT_RINGP(ring, DRAW(primtype, src_sel, idx_type, 0, instances),
86 OUT_RING(ring, DRAW(primtype, src_sel, idx_type, vismode, instances));
45 fd_draw(struct fd_batch *batch, struct fd_ringbuffer *ring, enum pc_di_primtype primtype, enum pc_di_vis_cull_mode vismode, enum pc_di_src_sel src_sel, uint32_t count, uint8_t instances, enum pc_di_index_size idx_type, uint32_t idx_size, uint32_t idx_offset, struct pipe_resource *idx_buffer) argument
H A Dfreedreno_util.h100 uint8_t instances)
108 (instances << 24);
97 DRAW(enum pc_di_primtype prim_type, enum pc_di_src_sel source_select, enum pc_di_index_size index_size, enum pc_di_vis_cull_mode vis_cull_mode, uint8_t instances) argument
/external/swiftshader/src/OpenGL/common/
H A DObject.cpp27 std::set<Object*> Object::instances; member in class:gl::Object
36 instances.insert(this);
46 ASSERT(instances.find(this) != instances.end()); // Check for double deletion
47 instances.erase(this);
96 ASSERT(Object::instances.empty()); // Check for GL object leak at termination
H A DObject.hpp56 static std::set<Object*> instances; // For leak checking member in class:gl::Object
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_draw.h55 uint32_t instances, enum a4xx_index_size idx_type,
77 OUT_RING(ring, instances); /* NumInstances */
51 fd4_draw(struct fd_batch *batch, struct fd_ringbuffer *ring, enum pc_di_primtype primtype, enum pc_di_vis_cull_mode vismode, enum pc_di_src_sel src_sel, uint32_t count, uint32_t instances, enum a4xx_index_size idx_type, uint32_t idx_size, uint32_t idx_offset, struct pipe_resource *idx_buffer) argument
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLayoutInflater.java22 private static AppSingletonizer<LayoutInflater> instances = new LayoutInflaterAppSingletonizer(); field in class:ShadowLayoutInflater
33 return bind(instances.getInstance(context), context);
H A DShadowAppWidgetManager.java27 private static AppSingletonizer<AppWidgetManager> instances = new AppSingletonizer<AppWidgetManager>(AppWidgetManager.class) { field in class:ShadowAppWidgetManager
67 return instances.getInstance(context);
/external/eigen/test/
H A Dexceptions.cpp33 instances--;
38 instances++;
68 static int instances; member in class:ScalarWithExceptions
76 int ScalarWithExceptions::instances = 0; member in class:ScalarWithExceptions
82 int before = ScalarWithExceptions::instances; \
87 VERIFY(ScalarWithExceptions::instances==before && "memory leak detected in " && EIGEN_MAKESTRING(OP)); \
107 VERIFY(ScalarWithExceptions::instances==0 && "global memory leak detected in " && EIGEN_MAKESTRING(OP)); \
/external/skia/src/gpu/ops/
H A DGrDrawPathOp.cpp188 const InstanceData& instances = *head.fInstanceData; local
193 instances.indices(),
195 instances.transformValues(),
196 instances.transformType(),
197 instances.count());
205 const InstanceData& instances = *draw.fInstanceData; local
206 memcpy(&indexStorage[idx], instances.indices(), instances.count() * sizeof(uint16_t));
207 pre_translate_transform_values(instances.transformValues(), this->transformType(),
208 instances
[all...]
/external/apache-http/src/org/apache/commons/logging/impl/
H A DLogFactoryImpl.java57 * <p>This factory will remember previously created <code>Log</code> instances
207 * The {@link org.apache.commons.logging.Log} instances that have
210 protected Hashtable instances = new Hashtable(); field in class:LogFactoryImpl
222 * implementation class that will be used to create new instances.
336 Log instance = (Log) instances.get(name);
339 instances.put(name, instance);
349 * instances returned by this factory. This is useful in environments
357 instances.clear();
525 * new {@link org.apache.commons.logging.Log} instances.</p>
/external/guava/guava-testlib/src/com/google/common/testing/
H A DClassSanityTester.java68 * <p>And all the created {@code Book} instances can be tested with: <pre>
126 * Object#equals} because more than one sample instances are needed for testing inequality.
127 * To set sample instances for equality testing, use {@link #setSampleInstances} instead.
136 * Sets sample instances for {@code type}, so that when a class {@code Foo} is tested for {@link
138 * type}, the sample instances can be passed to create {@code Foo} instances that are unequal.
141 * distinct values. It's usually necessary to add two unequal instances for each type, with the
143 * non-null sample is sufficient. Setting an empty list will clear sample instances for {@code
151 public <T> ClassSanityTester setSampleInstances(Class<T> type, Iterable<? extends T> instances) { argument
152 ImmutableList<? extends T> samples = ImmutableList.copyOf(instances);
[all...]
H A DFreshValueGenerator.java126 * Generates fresh instances of types that are different from each other (if possible).
148 <T> void addSampleInstances(Class<T> type, Iterable<? extends T> instances) { argument
149 sampleInstances.putAll(checkNotNull(type), checkNotNull(instances));
264 private <T> T nextInstance(T[] instances, T defaultValue) { argument
265 return nextInstance(Arrays.asList(instances), defaultValue);
268 private <T> T nextInstance(Collection<T> instances, T defaultValue) { argument
269 if (instances.isEmpty()) {
273 return Iterables.get(instances, (freshInt() - 1) % instances.size());
/external/deqp/modules/gles3/functional/
H A Des3fVertexArrayObjectTests.cpp119 int instances; member in struct:deqp::gles3::Functional::__anon4662::Spec
133 , instances (-1)
576 if (m_spec.instances == 0)
579 GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices, m_spec.instances));
583 if (m_spec.instances == 0)
586 GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, (GLvoid*)((GLintptr)m_spec.indexOffset), m_spec.instances));
591 if (m_spec.instances == 0)
594 GLU_CHECK_CALL(glDrawArraysInstanced(GL_TRIANGLES, 0, m_spec.count, m_spec.instances));
744 m_spec.instances = 0;
1153 if (m_spec.instances
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A Dr600_perfcounter.c365 unsigned instances = 1; local
368 instances = rctx->screen->info.max_se;
370 instances *= block->num_instances;
373 query->b.result_size += sizeof(uint64_t) * instances * group->num_counters;
374 i += instances * group->num_counters;
379 query->b.num_cs_dw_end += instances * read_dw;
381 query->b.num_cs_dw_end += instances * pc->num_instance_cs_dwords;
606 unsigned instances, void *data)
616 block->num_instances = MAX2(instances, 1);
602 r600_perfcounters_add_block(struct r600_common_screen *rscreen, struct r600_perfcounters *pc, const char *name, unsigned flags, unsigned counters, unsigned selectors, unsigned instances, void *data) argument
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_perfcounter.c80 unsigned instances; member in struct:si_pc_block
344 /* Both the number of instances and selectors varies between chips of the same
713 unsigned instances = block->instances; local
717 instances = 2;
725 instances,
/external/smali/smalidea/src/test/java/org/jf/smalidea/
H A DSmaliPositionManagerTest.java223 @Override public List<ObjectReference> instances(long l) { return null; } method in class:SmaliPositionManagerTest.MockReferenceType
/external/flatbuffers/tests/
H A Dtest.cpp774 std::string instances[instances_per_definition]; member in struct:RndDef
785 definitions_l[definition].instances[i] += instance_add;
805 // being generated. We generate multiple instances such that when creating
861 : definitions[defref].instances[instance].c_str());
880 definitions[definition].instances[inst] +=
904 definitions[num_definitions - 1].instances[0] + "\n";
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_generator.cpp1053 unsigned instances = ((struct brw_tcs_prog_data *) prog_data)->instances; local
1071 brw_OR(p, m0_2, m0_2, brw_imm_ud(instances << 9 | (1 << 15)));
H A Dbrw_compiler.h672 int instances; member in struct:brw_tcs_prog_data
/external/testng/src/main/java/org/testng/internal/
H A DInvoker.java89 Set<Object> instances = m_classInvocationResults.get( clazz );
90 if (instances == null) {
91 instances = Sets.newHashSet();
92 m_classInvocationResults.put(clazz, instances);
94 instances.add(instance);
98 Set<Object> instances = m_methodInvocationResults.get(method);
99 if (instances == null) {
100 instances = Sets.newHashSet();
101 m_methodInvocationResults.put(method, instances);
103 instances
1337 List<Object> instances = Lists.newArrayList(); field in class:Invoker.FailureContext
[all...]
/external/v8/src/runtime/
H A Druntime-debug.cc1256 Handle<FixedArray> instances; local
1264 instances = isolate->debug()->GetLoadedScripts();
1268 for (int i = 0; i < instances->length(); i++) {
1269 Handle<Script> script = Handle<Script>(Script::cast(instances->get(i)));
1272 // instances->set(i, *GetScriptWrapper(script))
1274 // already have dereferenced the instances handle.
1276 instances->set(i, *wrapper);
1280 return *isolate->factory()->NewJSArrayWithElements(instances);
1297 // args[1]: constructor function for instances to exclude (Mirror)
1308 List<Handle<JSObject> > instances; local
1363 List<Handle<JSObject> > instances; local
[all...]

Completed in 703 milliseconds

12