HomeSort by relevance Sort by last modified time
    Searched refs:combined (Results 1 - 25 of 459) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
JDKRandomGenerator.java 43 long combined = 0l; local
45 combined = combined * prime + s;
47 setSeed(combined);
AbstractRandomGenerator.java 75 long combined = 0l; local
77 combined = combined * prime + s;
79 setSeed(combined);
  /external/skia/src/gpu/glsl/
GrGLSLPrimitiveProcessor.cpp 19 SkMatrix combined; local
20 combined.setConcat(coordTransform.getMatrix(), localMatrix);
22 combined.postIDiv(coordTransform.peekTexture()->width(),
27 // combined.postScale(1,-1);
28 // combined.postTranslate(0,1);
29 combined.set(SkMatrix::kMSkewY,
30 combined[SkMatrix::kMPersp0] - combined[SkMatrix::kMSkewY]);
31 combined.set(SkMatrix::kMScaleY,
32 combined[SkMatrix::kMPersp1] - combined[SkMatrix::kMScaleY])
    [all...]
  /cts/
CtsCoverage.mk 41 cts-combined-coverage-report := $(coverage_out)/combined-coverage.html
42 cts-combined-xml-coverage-report := $(coverage_out)/combined-coverage.xml
67 $(cts-combined-coverage-report): PRIVATE_TEST_CASES := $(foreach c, $(cts_verifier_apk) $(COMPATIBILITY_TESTCASES_OUT_cts), $(c))
68 $(cts-combined-coverage-report): PRIVATE_CTS_API_COVERAGE_EXE := $(cts_api_coverage_exe)
69 $(cts-combined-coverage-report): PRIVATE_DEXDEPS_EXE := $(dexdeps_exe)
70 $(cts-combined-coverage-report): PRIVATE_API_XML_DESC := $(api_xml_description)
71 $(cts-combined-coverage-report): PRIVATE_NAPI_XML_DESC := $(napi_xml_description)
72 $(cts-combined-coverage-report) : $(android_cts_zip) $(cts_verifier_apk) $(cts_api_coverage_dependencies) | $(ACP
    [all...]
  /external/libchrome/base/trace_event/
trace_sampling_thread.cc 53 const char* const combined = local
57 ExtractCategoryAndName(combined, &category_group, &name);
84 void TraceSamplingThread::ExtractCategoryAndName(const char* combined,
87 *category = combined;
88 *name = &combined[strlen(combined) + 1];
trace_sampling_thread.h 41 // Splits a combined "category\0name" into the two component parts.
42 static void ExtractCategoryAndName(const char* combined,
  /external/junit-params/src/main/java/junitparams/custom/combined/
CombinedParameters.java 1 package junitparams.custom.combined;
CombinedParametersProvider.java 1 package junitparams.custom.combined;
Cartesian.java 1 package junitparams.custom.combined;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
RelativeLayoutRuleTest.java 52 String[] combined = new String[extraFragments.length + graphicsFragments.length]; local
53 System.arraycopy(graphicsFragments, 0, combined, 0, graphicsFragments.length);
54 System.arraycopy(extraFragments, 0, combined, graphicsFragments.length,
58 currentIndex, combined);
  /external/skia/src/gpu/gl/
GrGLPathRendering.h 110 SkMatrix combined; local
112 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
116 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
120 combined.preConcat(fViewMatrix);
121 GrGLSLGetMatrix<Size>(destMatrix, combined);
  /prebuilts/go/darwin-x86/test/
tinyfin.go 7 // Test finalizers work for tiny (combined) allocations.
27 // the closure must be big enough to be combined
44 // with the expected value (it would be combined as well).
57 // if the outermost allocations are combined with something persistent.
58 // Currently 4 int32's are combined into a 16-byte block,
  /prebuilts/go/linux-x86/test/
tinyfin.go 7 // Test finalizers work for tiny (combined) allocations.
27 // the closure must be big enough to be combined
44 // with the expected value (it would be combined as well).
57 // if the outermost allocations are combined with something persistent.
58 // Currently 4 int32's are combined into a 16-byte block,
  /external/trappy/tests/
test_results.py 81 combined = combine_results([res1, res2])
83 self.assertEquals(type(combined), Result)
84 self.assertEquals(combined["antutu"]["step_wise"][0], 4)
85 self.assertEquals(combined["antutu"]["power_allocator"][0], 5)
86 self.assertEquals(combined["geekbench"]["power_allocator"][1], 1)
87 self.assertEquals(combined["t-rex_offscreen"]["step_wise"][2], 424)
  /external/harfbuzz_ng/src/
gen-indic-table.py 67 combined = {} variable
70 if i == 2 and not u in combined:
72 if not u in combined:
73 combined[u] = list (defaults)
74 combined[u][i] = v
75 combined = {k:v for k,v in combined.items() if k in ALLOWED_SINGLES or v[2] in ALLOWED_BLOCKS} variable
76 data = combined
77 del combined
  /external/webrtc/webrtc/system_wrappers/source/
data_log_c.cc 30 std::string combined = webrtc::DataLog::Combine(table_name, table_id);
31 if (combined.size() >= combined_len) return NULL;
32 std::copy(combined.begin(), combined.end(), combined_name);
33 combined_name[combined.size()] = '\0';
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ParameterSet.java 68 ImmutableSetMultimap.Builder<String, String> combined = ImmutableSetMultimap.builder(); local
78 combined.putAll(name, values);
83 return combined.orderKeysBy(Ordering.natural()).build();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 283 * @return the combined image
288 Image combined = mErrorIcons.get(image); local
289 if (combined != null) {
290 return combined;
296 Image combined = new ErrorImageComposite(image, false).createImage(); local
297 mErrorIcons.put(image, combined);
299 return combined;
308 * @return the combined image
313 Image combined = mWarningIcons.get(image); local
314 if (combined != null)
321 Image combined = new ErrorImageComposite(image, true).createImage(); local
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_lower_clip_cull_distance_arrays.c 60 * Update the type of the combined array (including interface block nesting).
74 * Rewrite any clip/cull distances to refer to the new combined array.
78 nir_variable *combined,
94 if (var_ref->var->data.mode != combined->data.mode)
102 const struct glsl_type *type = combined->type;
118 /* Point the deref at the combined array */
119 var_ref->var = combined;
159 /* Turn the ClipDistance array into a combined one */
162 /* Rewrite CullDistance to reference the combined array */
  /frameworks/base/core/java/android/view/
KeyCharacterMap.java 241 * to combined output character.
356 * key is a "dead key" that should be combined with another to
486 * @return The combined character, or 0 if the characters cannot be combined.
502 int combined; local
504 combined = sDeadKeyCache.get(combination, -1);
505 if (combined == -1) {
510 combined = result.codePointCount(0, result.length()) == 1
512 sDeadKeyCache.put(combination, combined);
515 return combined;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDisplayUtils.java 126 final String combined; local
127 // We need to show company and title in a combined string. However, if the
131 combined = displayNameIsOrganization ? null : title;
134 combined = displayNameIsOrganization ? null : company;
137 combined = title;
139 combined = context.getString(
146 if (!TextUtils.isEmpty(combined)) {
147 return combined;
  /external/r8/src/main/java/com/android/tools/r8/graph/
DexAccessFlags.java 42 int combined = 0; local
44 combined |= flag;
46 return combined;
  /external/autotest/site_utils/admin/apache/
apache2.conf 199 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  /external/guice/core/test/com/google/inject/
ModulesTest.java 33 Module combined = Modules.combine(newModule(1), newModule(2L), newModule((short) 3)); local
34 Injector injector = Guice.createInjector(combined);
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
FuturesCombineBenchmark.java 115 ListenableFuture<Integer> combined = impl.combine(callable, INLINE_EXECUTOR, futures);
119 sum += combined.get();
131 ListenableFuture<Integer> combined = impl.combine(callable, INLINE_EXECUTOR, futures);
135 sum += combined.get();

Completed in 905 milliseconds

1 2 3 4 5 6 7 8 91011>>