/external/zlib/src/ |
infback.c | 269 static const unsigned short order[19] = /* permutation of code lengths */ local 380 state->lens[order[state->have++]] = (unsigned short)BITS(3); 384 state->lens[order[state->have++]] = 0;
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
az_isp.c | 22 * Compute the ISPs from the LPC coefficients (order=M) * 30 * For a even order m=2n, F1(z) has M/2 conjugate roots on the unit * 34 * For a 16th order LP analysis, F1(z) and F2(z) can be written as * 66 Word32 i, j, nf, ip, order; local 111 order = NC; 113 ylow = Chebps2(xlow, coef, order); 121 ylow = Chebps2(xlow, coef, order); 128 ymid = Chebps2(xmid, coef, order); 171 order = NC - 1; 176 order = NC [all...] |
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
SimpleInflater.java | 130 final int order = a.getInt(R.styleable.MenuItem_android_orderInCategory, 0); local
|
/libcore/crypto/src/main/java/org/conscrypt/ |
OpenSSLECGroupContext.java | 166 final BigInteger order = new BigInteger(NativeCrypto.EC_GROUP_get_order(groupCtx)); local 169 return new ECParameterSpec(curve, generator, order, cofactor.intValue(), curveName);
|
/libcore/luni/src/main/java/java/nio/ |
CharSequenceAdapter.java | 101 public ByteOrder order() { method in class:CharSequenceAdapter
|
FloatBuffer.java | 173 * as this buffer. The duplicated buffer's read-only property and byte order 323 * Returns the byte order used by this buffer when converting floats from/to 327 * platform's native byte order. 329 * @return the byte order used by this buffer when converting floats from/to 332 public abstract ByteOrder order(); method in class:FloatBuffer 474 * mark is cleared. The new buffer's read-only property and byte order are
|
IntBuffer.java | 167 * as this buffer. The duplicated buffer's read-only property and byte order 309 * Returns the byte order used by this buffer when converting ints from/to 313 * platform's native byte order. 315 * @return the byte order used by this buffer when converting ints from/to 318 public abstract ByteOrder order(); method in class:IntBuffer 463 * mark is cleared. The new buffer's read-only property and byte order are
|
LongBuffer.java | 169 * as this buffer. The duplicated buffer's read-only property and byte order 313 * Returns the byte order used by this buffer when converting longs from/to 317 * platform's native byte order. 319 * @return the byte order used by this buffer when converting longs from/to 322 public abstract ByteOrder order(); method in class:LongBuffer 464 * mark is cleared. The new buffer's read-only property and byte order are
|
ShortBuffer.java | 169 * as this buffer. The duplicated buffer's read-only property and byte order 312 * Returns the byte order used by this buffer when converting shorts from/to 316 * platform's native byte order. 318 * @return the byte order used by this buffer when converting shorts from/to 321 public abstract ByteOrder order(); method in class:ShortBuffer 463 * mark is cleared. The new buffer's read-only property and byte order are
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/ |
QueryService.java | 32 [-e p OPTIONAL PROJECTION] [-e s OPTIONAL SELECTION] [-e s OPTIONAL ORDER BY] \ 60 final String order = intent.getStringExtra(EXTRA_ORDER); local 68 order);
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
PercentageBarChart.java | 43 public final int order; field in class:PercentageBarChart.Entry 47 protected Entry(int order, float percentage, Paint paint) { 48 this.order = order; 55 return order - another.order; 150 public static Entry createEntry(int order, float percentage, int color) { 154 return new Entry(order, percentage, p);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
fixer_base.py | 33 order = "post" # Does the fixer prefer pre- or post-order traversal variable in class:BaseFix 35 run_order = 5 # Fixers will be sorted by run order before execution 41 # original line order
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/ |
fixer_base.py | 33 order = "post" # Does the fixer prefer pre- or post-order traversal variable in class:BaseFix 35 run_order = 5 # Fixers will be sorted by run order before execution 41 # original line order
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/ |
DoubleBufferTest.java | 120 assertEquals(buf.order(), readonly.order()); 223 assertEquals(buf.order(), duplicate.order()); 413 assertEquals(ByteOrder.nativeOrder(), buf.order()); 587 assertEquals(buf.order(), slice.order());
|
FloatBufferTest.java | 96 assertEquals(buf.order(), readonly.order()); 214 assertEquals(buf.order(), duplicate.order()); 411 buf.order(); 413 assertEquals(ByteOrder.nativeOrder(), buf.order()); 598 assertEquals(buf.order(), slice.order());
|
IntBufferTest.java | 96 assertEquals(buf.order(), readonly.order()); 194 assertEquals(buf.order(), duplicate.order()); 389 buf.order(); 390 assertEquals(ByteOrder.nativeOrder(), buf.order()); 574 assertEquals(buf.order(), slice.order());
|
LongBufferTest.java | 96 assertEquals(buf.order(), readonly.order()); 194 assertEquals(buf.order(), duplicate.order()); 390 buf.order(); 391 assertEquals(ByteOrder.nativeOrder(), buf.order()); 581 assertEquals(buf.order(), slice.order());
|
ShortBufferTest.java | 95 assertEquals(buf.order(), readonly.order()); 193 assertEquals(buf.order(), duplicate.order()); 376 buf.order(); 377 assertEquals(ByteOrder.nativeOrder(), buf.order()); 561 assertEquals(buf.order(), slice.order());
|
/bionic/libc/netbsd/nameser/ |
ns_print.c | 351 u_int order, preference; local 357 /* Order, Precedence. */ 358 order = ns_get16(rdata); rdata += NS_INT16SZ; 360 len = SPRINTF((t, "%u %u ", order, preference));
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
StdCatchBuilder.java | 41 /** {@code non-null;} block output order */ 42 private final int[] order; field in class:StdCatchBuilder 52 * @param order {@code non-null;} block output order 55 public StdCatchBuilder(RopMethod method, int[] order, 61 if (order == null) { 62 throw new NullPointerException("order == null"); 70 this.order = order; 76 return build(method, order, addresses) [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
StdCatchBuilder.java | 40 /** {@code non-null;} block output order */ 41 private final int[] order; field in class:StdCatchBuilder 51 * @param order {@code non-null;} block output order 54 public StdCatchBuilder(RopMethod method, int[] order, 60 if (order == null) { 61 throw new NullPointerException("order == null"); 69 this.order = order; 75 return build(method, order, addresses) [all...] |
/external/aac/libAACenc/src/ |
aacenc_tns.h | 114 /* TNS max filter order for Low Complexity MPEG4 profile */ 124 INT tnsLimitOrder[MAX_NUM_OF_FILTERS]; /* Limit for TNS order TABUL*/ 136 INT maxOrder; /* max. order of tns filter */ 182 INT order[TRANS_FAC][MAX_NUM_OF_FILTERS]; member in struct:__anon2491
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
CollationElementIteratorTest.java | 62 int order = iterator.next(); local 64 while (order != CollationElementIterator.NULLORDER) { 65 orders[i++] = order; 66 order = iterator.next(); 71 order = iterator.previous(); 73 while (order != CollationElementIterator.NULLORDER) { 74 assertEquals(orders[--i], order); 75 order = iterator.previous(); 86 int order = iterator.next(); local 88 while (order != CollationElementIterator.NULLORDER) 106 int order = iterator.next(); local 120 int order = iterator.next(); local 135 int order = iterator.next(); local 150 int order = iterator.next(); local [all...] |
/external/chromium_org/media/webm/ |
webm_content_encodings.h | 55 int64 order() const { return order_; } function in class:media::ContentEncoding 56 void set_order(int64 order) { order_ = order; }
|
/external/chromium_org/net/android/ |
keystore_openssl.cc | 621 // that has the same order than the private key. 622 std::vector<uint8> order; local 623 if (!GetECKeyOrder(private_key, &order)) { 624 LOG(ERROR) << "Can't extract order parameter from EC private key"; 632 if (!CopyBigNumFromBytes(order, &group.get()->order)) { 633 LOG(ERROR) << "Can't decode order from PrivateKey";
|