Searched refs:order (Results 451 - 475 of 874) sorted by relevance

<<11121314151617181920>>

/external/boringssl/src/crypto/ec/
H A Dec_asn1.c379 CBS prime, a, b, base_x, base_y, order; local
381 &order)) {
390 /* |curve->data->data| is ordered p, a, b, x, y, order, each component
400 integers_equal(&order, curve->data->data + param_len * 5, param_len)) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DECUtil.java279 public static int getOrderBitLength(ProviderConfiguration configuration, BigInteger order, BigInteger privateValue) argument
281 if (order == null) // implicitly CA
294 return order.bitLength();
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineReferenceRenderer.cpp177 const bool hasDepthStencil = (m_depthStencilFormat.order != tcu::TextureFormat::CHANNELORDER_LAST);
178 const bool hasDepthBufferOnly = (m_depthStencilFormat.order == tcu::TextureFormat::D);
179 const bool hasStencilBufferOnly = (m_depthStencilFormat.order == tcu::TextureFormat::S);
/external/flatbuffers/java/com/google/flatbuffers/
H A DFlatBufferBuilder.java97 bb.order(ByteOrder.LITTLE_ENDIAN);
118 newbb.order(ByteOrder.LITTLE_ENDIAN);
332 * // The strings are added in reverse order since the buffer
387 ByteBuffer copy = bb.slice().order(ByteOrder.LITTLE_ENDIAN);
777 * In order to save space, fields that are set to their default value
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
H A DSetGenerators.java143 @Override public List<String> order(List<String> insertionOrder) { method in class:SetGenerators.ImmutableSortedSetExplicitComparator
161 @Override public List<String> order(List<String> insertionOrder) { method in class:SetGenerators.ImmutableSortedSetExplicitSuperclassComparatorGenerator
176 @Override public List<String> order(List<String> insertionOrder) { method in class:SetGenerators.ImmutableSortedSetReversedOrderGenerator
276 * These generators also rely on consecutive integer inputs (not necessarily in order, but no
/external/guava/guava-tests/test/com/google/common/collect/
H A DTreeMultisetTest.java65 public List<String> order(List<String> insertionOrder) {
86 public List<String> order(List<String> insertionOrder) {
105 public List<String> order(List<String> insertionOrder) {
H A DForwardingSortedSetTest.java116 @Override public List<String> order(List<String> insertionOrder) {
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DTrie2.java51 * The serialized Trie2 on the stream may be in either little or big endian byte order.
53 * byte order of the system that created them.
97 ByteOrder outerByteOrder = bytes.order();
105 // The buffer is already set to the trie data byte order.
108 // Temporarily reverse the byte order.
110 bytes.order(isBigEndian ? ByteOrder.LITTLE_ENDIAN : ByteOrder.BIG_ENDIAN);
188 bytes.order(outerByteOrder);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTrie2.java49 * The serialized Trie2 on the stream may be in either little or big endian byte order.
51 * byte order of the system that created them.
95 ByteOrder outerByteOrder = bytes.order();
103 // The buffer is already set to the trie data byte order.
106 // Temporarily reverse the byte order.
108 bytes.order(isBigEndian ? ByteOrder.LITTLE_ENDIAN : ByteOrder.BIG_ENDIAN);
186 bytes.order(outerByteOrder);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dlpc_analysis.c78 double WebRtcIsac_LevDurb(double *a, double *k, double *r, size_t order) argument
86 for (i = 0; i < order; i++) {
93 for (m = 1; m < order; m++){
/external/zlib/src/contrib/infback9/
H A Dinfback9.c248 static const unsigned short order[19] = /* permutation of code lengths */ local
364 state->lens[order[state->have++]] = (unsigned short)BITS(3);
368 state->lens[order[state->have++]] = 0;
/external/flac/libFLAC/
H A Dstream_encoder.c180 unsigned order,
201 unsigned order,
360 void (*local_lpc_compute_residual_from_qlp_coefficients)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
361 void (*local_lpc_compute_residual_from_qlp_coefficients_64bit)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
362 void (*local_lpc_compute_residual_from_qlp_coefficients_16bit)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
365 FLAC__bool use_wide_by_partition; /* use slow 64-bit versions of some functions because of the min partition order and blocksize */
366 FLAC__bool use_wide_by_order; /* use slow 64-bit versions of some functions because of the lpc order */
2496 /*@@@ new_blocksize*2 is too pessimistic, but to fix, we need smarter logic because a smaller new_blocksize can actually increase the # of partitions; would require moving this out into a separate function, then checking its capacity against the need of the current blocksize&min/max_partition_order (and maybe predictor order) */
3615 if(!FLAC__subframe_add_fixed(&(subframe->data.fixed), blocksize - subframe->data.fixed.order, subframe_bps, subframe->wasted_bits, frame)) {
3621 if(!FLAC__subframe_add_lpc(&(subframe->data.lpc), blocksize - subframe->data.lpc.order, subframe_bp
3693 evaluate_fixed_subframe_( FLAC__StreamEncoder *encoder, const FLAC__int32 signal[], FLAC__int32 residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned raw_bits_per_partition[], unsigned blocksize, unsigned subframe_bps, unsigned order, unsigned rice_parameter, unsigned rice_parameter_limit, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool do_escape_coding, unsigned rice_parameter_search_dist, FLAC__Subframe *subframe, FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents ) argument
3755 evaluate_lpc_subframe_( FLAC__StreamEncoder *encoder, const FLAC__int32 signal[], FLAC__int32 residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned raw_bits_per_partition[], const FLAC__real lp_coeff[], unsigned blocksize, unsigned subframe_bps, unsigned order, unsigned qlp_coeff_precision, unsigned rice_parameter, unsigned rice_parameter_limit, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool do_escape_coding, unsigned rice_parameter_search_dist, FLAC__Subframe *subframe, FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents ) argument
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fTextureSpecificationTests.cpp88 switch (textureFormat.order)
1280 bool texHasRGB = fmt.order != tcu::TextureFormat::A;
1281 bool texHasAlpha = fmt.order == tcu::TextureFormat::RGBA || fmt.order == tcu::TextureFormat::LA || fmt.order == tcu::TextureFormat::A;
1328 bool texHasRGB = fmt.order != tcu::TextureFormat::A;
1329 bool texHasAlpha = fmt.order == tcu::TextureFormat::RGBA || fmt.order == tcu::TextureFormat::LA || fmt.order == tcu::TextureFormat::A;
1385 bool texHasRGB = fmt.order !
[all...]
/external/eigen/bench/btl/data/
H A Dgnuplot_common_settings.hh40 set cntrparam order 4
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_128HashFunction.java173 .order(ByteOrder.LITTLE_ENDIAN)
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractContainerTester.java93 * respecting cardinality but not order. Subclasses may override this method
217 * {@link TestContainerGenerator#order(List)}. Tests should used this method
223 for (E e : getSubjectGenerator().order(
/external/guava/guava-testlib/test/com/google/common/collect/testing/
H A DSafeTreeMapTest.java77 public Iterable<Entry<String, String>> order(List<Entry<String, String>> insertionOrder) {
/external/guava/guava-tests/test/com/google/common/primitives/
H A DByteArrayAsListTest.java154 public List<Byte> order(List<Byte> insertionOrder) { method in class:ByteArrayAsListTest.TestByteListGenerator
H A DCharArrayAsListTest.java154 public List<Character> order(List<Character> insertionOrder) { method in class:CharArrayAsListTest.TestCharListGenerator
H A DDoubleArrayAsListTest.java154 public List<Double> order(List<Double> insertionOrder) { method in class:DoubleArrayAsListTest.TestDoubleListGenerator
H A DFloatArrayAsListTest.java154 public List<Float> order(List<Float> insertionOrder) { method in class:FloatArrayAsListTest.TestFloatListGenerator
H A DIntArrayAsListTest.java154 public List<Integer> order(List<Integer> insertionOrder) { method in class:IntArrayAsListTest.TestIntegerListGenerator
H A DLongArrayAsListTest.java154 public List<Long> order(List<Long> insertionOrder) { method in class:LongArrayAsListTest.TestLongListGenerator
H A DShortArrayAsListTest.java154 public List<Short> order(List<Short> insertionOrder) { method in class:ShortArrayAsListTest.TestShortListGenerator
/external/harfbuzz_ng/win32/
H A Dcreate-lists-msvc.mak17 # ... (repeat the if [call ...] lines in the above order if needed)
25 # In order to obtain the .obj filename that is needed for NMake Makefiles to build DLLs/static LIBs or EXEs, do the following

Completed in 1868 milliseconds

<<11121314151617181920>>