HomeSort by relevance Sort by last modified time
    Searched refs:order (Results 576 - 600 of 1317) sorted by null

<<21222324252627282930>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AdtPrefs.java 238 String order = mStore.getString(PREFS_ATTRIBUTE_SORT); local
240 if (XmlAttributeSortOrder.ALPHABETICAL.key.equals(order)) {
242 } else if (XmlAttributeSortOrder.NO_SORTING.key.equals(order)) {
361 * Returns the sort order to be applied to the attributes (one of which can
364 * @return the sort order to apply to the attributes
  /external/flac/libFLAC/
stream_encoder.c 200 unsigned order,
221 unsigned order,
377 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[]);
378 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[]);
379 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[]);
382 FLAC__bool use_wide_by_partition; /* use slow 64-bit versions of some functions because of the min partition order and blocksize */
383 FLAC__bool use_wide_by_order; /* use slow 64-bit versions of some functions because of the lpc order */
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
MenuInflateFromXml.java 46 R.menu.checkable, R.menu.shortcuts, R.menu.order, R.menu.category_order,
55 "Checkable", "Shortcuts", "Order", "Category and Order",
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CompressedTextureActivity.java 137 .order(ByteOrder.nativeOrder());
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/model/
testfile.py 80 files = query.order("-date").fetch(limit)
  /external/chromium_org/third_party/leveldatabase/src/doc/bench/
db_bench_sqlite3.cc 12 // Comma-separated list of operations to run in the specified order
15 // fillseq -- write N values in sequential key order in async mode
16 // fillseqsync -- write N/100 values in sequential key order in sync mode
17 // fillseqbatch -- batch write N values in sequential key order in async mode
18 // fillrandom -- write N values in random key order in async mode
19 // fillrandsync -- write N/100 values in random key order in sync mode
20 // fillrandbatch -- batch write N values in sequential key order in async mode
21 // overwrite -- overwrite N values in random key order in async mode
22 // fillrand100K -- write N/1000 100K values in random order in async mode
23 // fillseq100K -- write N/1000 100K values in sequential order in async mod
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
7zDec.c 84 unsigned order = coder->Props.data[0]; local
86 if (order < PPMD7_MIN_ORDER ||
87 order > PPMD7_MAX_ORDER ||
94 Ppmd7_Init(&ppmd, order);
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
mips-mont.S 15 slt $1,$9,17 # on in-order CPU
  /external/chromium_org/third_party/opus/src/silk/float/
main_FLP.h 110 silk_float *corr, /* O Result [order + 1] */
114 const opus_int order /* I Correlation order (even) */
185 const opus_int LPC_order /* I LPC order */
188 /* 16th order LPC analysis filter */
194 const opus_int Order /* I LPC order */
229 const silk_float *x, /* I x vector [ L+order-1 ] used to create X */
231 const opus_int Order, /* I Max lag for correlation */
232 silk_float *XX /* O X'*X correlation matrix [order x order] *
    [all...]
  /external/chromium_org/v8/src/
cpu-profiler.cc 60 event.generic.order = ++last_code_event_id_;
100 last_processed_code_event_id_ = record.generic.order;
110 && ticks_from_vm_buffer_.Peek()->order ==
126 if (record.order != last_processed_code_event_id_) return true;
  /external/chromium_org/v8/test/mjsunit/
debug-script-breakpoints.js 64 // Remove script break points (in another order than they where added).
105 // Remove script break points (in another order than they where added).
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_verify_hash.c 90 /* get the order */
91 if ((err = mp_read_radix(p, (char *)key->dp->order, 16)) != CRYPT_OK) { goto error; }
  /external/eigen/bench/btl/data/
gnuplot_common_settings.hh 40 set cntrparam order 4
  /external/guava/guava/src/com/google/common/hash/
MessageDigestHashFunction.java 69 this.scratch = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN);
Murmur3_128HashFunction.java 148 ByteBuffer bb = ByteBuffer.wrap(new byte[16]).order(ByteOrder.LITTLE_ENDIAN);
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingSortedSetTest.java 116 @Override public List<String> order(List<String> insertionOrder) {
TransformedSetTest.java 122 @Override public Iterable<Integer> order(List<Integer> insertionOrder) { method in class:TransformedSetTest.TransformedIntegerSetGenerator
  /external/guava/guava-tests/test/com/google/common/primitives/
ByteArrayAsListTest.java 152 public List<Byte> order(List<Byte> insertionOrder) { method in class:ByteArrayAsListTest.TestByteListGenerator
CharArrayAsListTest.java 152 public List<Character> order(List<Character> insertionOrder) { method in class:CharArrayAsListTest.TestCharListGenerator
DoubleArrayAsListTest.java 152 public List<Double> order(List<Double> insertionOrder) { method in class:DoubleArrayAsListTest.TestDoubleListGenerator
FloatArrayAsListTest.java 152 public List<Float> order(List<Float> insertionOrder) { method in class:FloatArrayAsListTest.TestFloatListGenerator
IntArrayAsListTest.java 152 public List<Integer> order(List<Integer> insertionOrder) { method in class:IntArrayAsListTest.TestIntegerListGenerator
LongArrayAsListTest.java 152 public List<Long> order(List<Long> insertionOrder) { method in class:LongArrayAsListTest.TestLongListGenerator
ShortArrayAsListTest.java 152 public List<Short> order(List<Short> insertionOrder) { method in class:ShortArrayAsListTest.TestShortListGenerator
  /external/ipsec-tools/src/racoon/
oakley.h 163 vchar_t *order; member in struct:dhgroup

Completed in 4959 milliseconds

<<21222324252627282930>>