Home
last modified time | relevance | path

Searched refs:combined (Results 1 – 25 of 380) sorted by relevance

12345678910>>...16

/external/skia/src/gpu/glsl/
DGrGLSLPrimitiveProcessor.cpp17 SkMatrix combined; in GetTransformMatrix() local
20 combined.setConcat(coordTransform.getMatrix(), localMatrix); in GetTransformMatrix()
22 combined = coordTransform.getMatrix(); in GetTransformMatrix()
27 combined.set(SkMatrix::kMSkewY, in GetTransformMatrix()
28 combined[SkMatrix::kMPersp0] - combined[SkMatrix::kMSkewY]); in GetTransformMatrix()
29 combined.set(SkMatrix::kMScaleY, in GetTransformMatrix()
30 combined[SkMatrix::kMPersp1] - combined[SkMatrix::kMScaleY]); in GetTransformMatrix()
31 combined.set(SkMatrix::kMTransY, in GetTransformMatrix()
32 combined[SkMatrix::kMPersp2] - combined[SkMatrix::kMTransY]); in GetTransformMatrix()
34 return combined; in GetTransformMatrix()
/external/llvm/test/CodeGen/AArch64/
Dbitfield-insert.ll38 %combined = or i32 %oldval_keep, %newval_masked
39 store volatile i32 %combined, i32* %existing
57 %combined = or i64 %oldval_keep, %newval_masked
58 store volatile i64 %combined, i64* %existing
77 %combined = or i64 %oldval_keep, %newval_masked
78 store volatile i64 %combined, i64* %existing
96 %combined = or i32 %oldval_keep, %newval_masked
97 store volatile i32 %combined, i32* %existing
114 %combined = or i64 %newval_masked, %oldval_keep
115 store volatile i64 %combined, i64* %existing
[all …]
Dbitfield-insert-0.ll15 %combined = or i32 %newval_masked, %oldval_keep
16 store volatile i32 %combined, i32* %existing
Datomic-ops-not-barriers.ll24 %combined = phi i32 [ %val, %atomic_ver ], [ %newval, %simple_ver]
25 ret i32 %combined
/external/libchrome/base/trace_event/
Dtrace_sampling_thread.cc50 const char* const combined = in DefaultSamplingCallback() local
54 ExtractCategoryAndName(combined, &category_group, &name); in DefaultSamplingCallback()
80 void TraceSamplingThread::ExtractCategoryAndName(const char* combined, in ExtractCategoryAndName() argument
83 *category = combined; in ExtractCategoryAndName()
84 *name = &combined[strlen(combined) + 1]; in ExtractCategoryAndName()
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
DJDKRandomGenerator.java43 long combined = 0l; in setSeed() local
45 combined = combined * prime + s; in setSeed()
47 setSeed(combined); in setSeed()
DAbstractRandomGenerator.java75 long combined = 0l; in setSeed() local
77 combined = combined * prime + s; in setSeed()
79 setSeed(combined); in setSeed()
/external/harfbuzz_ng/src/
Dgen-indic-table.py45 combined = {} variable
48 if i == 2 and not u in combined:
50 if not u in combined:
51 combined[u] = list (defaults)
52 combined[u][i] = v
53 combined = {k:v for k,v in combined.items() if v[2] not in BLACKLISTED_BLOCKS} variable
54 data = combined
55 del combined
Dgen-use-table.py53 combined = {} variable
56 if i >= 2 and not u in combined:
58 if not u in combined:
59 combined[u] = list (defaults)
60 combined[u][i] = v
61 combined = {k:v for k,v in combined.items() if v[3] not in BLACKLISTED_BLOCKS} variable
62 data = combined
63 del combined
/external/skia/src/gpu/gl/
DGrGLPathRendering.h98 SkMatrix combined; in getRTAdjustedGLMatrix() local
100 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1, in getRTAdjustedGLMatrix()
104 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1, in getRTAdjustedGLMatrix()
108 combined.preConcat(fViewMatrix); in getRTAdjustedGLMatrix()
109 GrGLSLGetMatrix<Size>(destMatrix, combined); in getRTAdjustedGLMatrix()
/external/chromium-trace/catapult/third_party/pipeline/pipeline/
Dcommon.py181 combined = []
183 combined.extend(value)
184 return combined
199 combined = []
201 combined.append(value)
202 return combined
225 combined = set()
227 combined.update(value)
228 return list(combined)
/external/webrtc/webrtc/system_wrappers/source/
Ddata_log_c.cc30 std::string combined = webrtc::DataLog::Combine(table_name, table_id); in WebRtcDataLog_Combine() local
31 if (combined.size() >= combined_len) return NULL; in WebRtcDataLog_Combine()
32 std::copy(combined.begin(), combined.end(), combined_name); in WebRtcDataLog_Combine()
33 combined_name[combined.size()] = '\0'; in WebRtcDataLog_Combine()
/external/llvm/utils/lit/tests/Inputs/shtest-shell/
Dredirects.txt33 # Check combined redirect (&>).
35 # RUN: echo "not-present" > %t.combined
36 # RUN: %S/write-to-stdout-and-stderr.sh &> %t.combined
37 # RUN: FileCheck --check-prefix=COMBINED-WRITE < %t.combined %s
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/
DPerspectiveCamera.java58 combined.set(projection); in update()
59 Matrix4.mul(combined.val, view.val); in update()
62 invProjectionView.set(combined); in update()
DOrthographicCamera.java59 combined.set(projection); in update()
60 Matrix4.mul(combined.val, view.val); in update()
63 invProjectionView.set(combined); in update()
/external/chromium-trace/catapult/dashboard/dashboard/
Dlist_tests.py76 combined = {}
82 combined = _MergeSubTestsDict(combined, cached)
90 combined = _MergeSubTestsDict(combined, sub_tests)
91 return combined
/external/v8/src/compiler/
Dtype-hints.h39 Hint combined() const { return Combine(Combine(left(), right()), result()); } in combined() function
83 CompareOperationHints(Hint left, Hint right, Hint combined) in CompareOperationHints() argument
85 CombinedField::encode(combined)) {} in CompareOperationHints()
93 Hint combined() const { return CombinedField::decode(bit_field_); } in combined() function
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/gles2/
DSimpleVertexShader.java34 Matrix4 combined = new Matrix4(); field in SimpleVertexShader
70 combined.set(projection).mul(view).mul(model); in render()
75 shader.setUniformMatrix("u_mvpMatrix", combined); in render()
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DParameterSet.java68 ImmutableSetMultimap.Builder<String, String> combined = ImmutableSetMultimap.builder(); in fillInDefaultsFor() local
78 combined.putAll(name, values); in fillInDefaultsFor()
83 return combined.orderKeysBy(Ordering.natural()).build(); in fillInDefaultsFor()
/external/chromium-trace/catapult/tracing/third_party/mannwhitneyu/
Dmannwhitneyu.js51 combined = [],
54 combined.push({
60 combined.push({
65 ranked = this.fractional(combined, 'val');
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DFuturesCombineBenchmark.java115 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();
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
Dmain.m7 NSLog(@"starting combined\n");
21 NSLog(@"exiting combined\n");
/external/autotest/client/site_tests/graphics_dEQP/expectations/broadwell/
DdEQP-GLES2.functional.hasty.Flaky.bz21dEQP-GLES2.functional.buffer.write.basic.array_dynamic_draw 2dEQP-GLES2. ...
/external/valgrind/memcheck/tests/
Dvarinfo6.stdout.exp2 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373
10 final combined CRC = 0xA212ABF8
/external/clang/docs/
DLeakSanitizer.rst11 LeakSanitizer is a run-time memory leak detector. It can be combined with
23 The combined mode has been tested on fairly large software projects. The

12345678910>>...16