Searched refs:combined (Results 1 - 25 of 91) sorted by relevance

1234

/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DJDKRandomGenerator.java43 long combined = 0l;
45 combined = combined * prime + s;
47 setSeed(combined);
H A DAbstractRandomGenerator.java75 long combined = 0l;
77 combined = combined * prime + s;
79 setSeed(combined);
/external/skia/src/gpu/glsl/
H A DGrGLSLPrimitiveProcessor.cpp19 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[SkMatri
[all...]
/external/skqp/src/gpu/glsl/
H A DGrGLSLPrimitiveProcessor.cpp19 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[SkMatri
[all...]
/external/junit-params/src/main/java/junitparams/custom/combined/
H A DCombinedParameters.java1 package junitparams.custom.combined;
H A DCombinedParametersProvider.java1 package junitparams.custom.combined;
H A DCartesian.java1 package junitparams.custom.combined;
/external/skia/src/gpu/gl/
H A DGrGLPathRendering.h110 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);
/external/skqp/src/gpu/gl/
H A DGrGLPathRendering.h110 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);
/external/trappy/tests/
H A Dtest_results.py81 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/
H A Dgen-indic-table.py67 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
H A Dgen-use-table.py54 combined = {} variable
57 if i >= 2 and not u in combined:
59 if not u in combined:
60 combined[u] = list (defaults)
61 combined[u][i] = v
62 combined = {k:v for k,v in combined.items() if v[3] not in BLACKLISTED_BLOCKS} variable
63 data = combined
64 del combined
/external/webrtc/webrtc/system_wrappers/source/
H A Ddata_log_c.cc30 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/
H A DParameterSet.java68 ImmutableSetMultimap.Builder<String, String> combined = ImmutableSetMultimap.builder();
78 combined.putAll(name, values);
83 return combined.orderKeysBy(Ordering.natural()).build();
/external/mesa3d/src/compiler/nir/
H A Dnir_lower_clip_cull_distance_arrays.c60 * 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 */
77 rewrite_references(nir_instr *instr, nir_variable *combined, unsigned cull_offset) argument
/external/avb/libavb/
H A Davb_cmdline.c183 char combined[AVB_MAX_DIGITS_UINT64 * 2 + 1]; local
188 avb_memcpy(combined, major_digits, num_major_digits);
189 combined[num_major_digits] = '.';
190 avb_memcpy(combined + num_major_digits + 1, minor_digits, num_minor_digits);
191 combined[num_major_digits + 1 + num_minor_digits] = '\0';
193 return cmdline_append_option(slot_data, key, combined);
/external/guice/core/test/com/google/inject/
H A DModulesTest.java33 Module combined = Modules.combine(newModule(1), newModule(2L), newModule((short) 3));
34 Injector injector = Guice.createInjector(combined);
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A 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/junit-params/src/test/java/junitparams/custom/combined/
H A DCartesianTest.java1 package junitparams.custom.combined;
H A DCombinedParametersProviderTest.java1 package junitparams.custom.combined;
/external/valgrind/memcheck/tests/
H A Dvarinfo6.stdout.exp2 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373
10 final combined CRC = 0xA212ABF8
/external/guava/guava/src/com/google/common/util/concurrent/
H A DSimpleTimeLimiter.java154 StackTraceElement[] combined = ObjectArrays.concat(cause.getStackTrace(),
156 cause.setStackTrace(combined);
/external/trappy/tests/trappy/wa/
H A Dresults.py164 combined = pd.concat(res_dict.values(), axis=1, keys=res_dict.keys())
166 return Result(combined)
/external/trappy/trappy/wa/
H A Dresults.py164 combined = pd.concat(res_dict.values(), axis=1, keys=res_dict.keys())
166 return Result(combined)
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dgrammar.rb45 GRAMMAR_TYPES = %w(lexer parser tree combined)
89 elsif combined? then base = name + 'Lexer'
101 elsif combined? then base = name + 'Parser'
116 @type == 'combined' || @type == 'lexer'
120 @type == 'combined' || @type == 'parser'
137 def combined?
138 @type == "combined"
264 @type = $1 || 'combined'

Completed in 563 milliseconds

1234