HomeSort by relevance Sort by last modified time
    Searched defs:order (Results 51 - 75 of 152) sorted by null

1 23 4 5 6 7

  /external/chromium/third_party/icu/source/test/intltest/
itercoll.cpp 191 Order *orders = getOrders(*iter, orderLength);
306 uint32_t order; local
310 order = iter->previous(status);
313 if (CollationElementIterator::isIgnorable(order))
314 order = iter->previous(status);
322 if (U_FAILURE(status) && iter->getMaxExpansion(order) < count) {
536 * Testing the strength order
540 int order = 0x0123ABCD; local
560 if (iter->strengthOrder(order) != 0x01230000) {
561 errln("Strength order for a primary strength collator should be the first 2 bytes")
586 int32_t order; local
    [all...]
tscoll.cpp 400 Order *orders = getOrders(iter, orderLength);
425 if (o != orders[index].order) {
429 while (index > 0 && orders[--index].order == 0) {
433 if (o != orders[index].order) {
434 errln("Mismatched order at index %d: 0x%0:8X vs. 0x%0:8X", index,
435 orders[index].order, o);
453 while (index != 0 && orders[index - 1].order == 0)
496 IntlTestCollator::Order *IntlTestCollator::getOrders(CollationElementIterator &iter, int32_t &orderLength)
500 Order *orders = new Order[maxSize]
504 int32_t order; local
    [all...]
  /external/chromium/third_party/zlib/
inflate.c 509 PULLBYTE() directly in order to pull just enough bytes to decode the next
536 during that inflate() call in order to return the proper return code.
574 static const unsigned short order[19] = /* permutation of code lengths */ local
858 state->lens[order[state->have++]] = (unsigned short)BITS(3);
862 state->lens[order[state->have++]] = 0;
    [all...]
  /external/dropbear/libtomcrypt/demos/
tv_gen.c 664 void *k, *order, *modulus; local
669 fprintf(out, "ecc vectors. These are for kG for k=1,3,9,27,...,3**n until k > order of the curve outputs are <k,x,y> triplets\n\n");
673 mp_init(&order);
680 mp_read_radix(order, (char *)ltc_ecc_sets[x].order, 16);
686 while (mp_cmp(k, order) == LTC_MP_LT) {
694 mp_clear_multi(k, order, modulus, NULL);
  /external/icu4c/test/intltest/
itercoll.cpp 191 Order *orders = getOrders(*iter, orderLength);
306 uint32_t order; local
310 order = iter->previous(status);
313 if (CollationElementIterator::isIgnorable(order))
314 order = iter->previous(status);
322 if (U_FAILURE(status) && iter->getMaxExpansion(order) < count) {
536 * Testing the strength order
540 int order = 0x0123ABCD; local
560 if (iter->strengthOrder(order) != 0x01230000) {
561 errln("Strength order for a primary strength collator should be the first 2 bytes")
586 int32_t order; local
    [all...]
tscoll.cpp 404 LocalArray<Order> orders(getOrders(iter, orderLength));
429 if (o != orders[index].order) {
433 while (index > 0 && orders[--index].order == 0) {
437 if (o != orders[index].order) {
438 errln("Mismatched order at index %d: 0x%0:8X vs. 0x%0:8X", index,
439 orders[index].order, o);
457 while (index != 0 && orders[index - 1].order == 0)
497 IntlTestCollator::Order *IntlTestCollator::getOrders(CollationElementIterator &iter, int32_t &orderLength)
501 LocalArray<Order> orders(new Order[maxSize])
505 int32_t order; local
    [all...]
  /external/openssl/apps/
s_socket.c 71 /* With IPv6, it looks like Digital has mixed up the proper order of
573 unsigned long order; member in struct:ghbn_cache_st
587 if (low > ghbn_cache[i].order)
589 low=ghbn_cache[i].order;
592 if (ghbn_cache[i].order > 0)
608 ghbn_cache[lowi].order=ghbn_miss+ghbn_hits;
616 ghbn_cache[i].order=ghbn_miss+ghbn_hits;
  /external/openssl/crypto/ec/
ec_ameth.c 373 BIGNUM *order = BN_new(); local
377 if (!order)
383 if (!EC_GROUP_get_order(group, order, NULL))
389 ret = BN_num_bits(order);
390 BN_free(order);
433 BIGNUM *pub_key=NULL, *order=NULL; local
492 if ((order = BN_new()) == NULL)
494 if (!EC_GROUP_get_order(group, order, NULL))
497 BN_num_bits(order)) <= 0) goto err;
513 if (order)
    [all...]
ec_mult.c 768 BIGNUM *order; local
795 order = BN_CTX_get(ctx);
796 if (order == NULL) goto err;
798 if (!EC_GROUP_get_order(group, order, ctx)) goto err;
799 if (BN_is_zero(order))
805 bits = BN_num_bits(order);
  /external/qemu/distrib/zlib-1.2.3/
inflate.c 509 PULLBYTE() directly in order to pull just enough bytes to decode the next
536 during that inflate() call in order to return the proper return code.
574 static const unsigned short order[19] = /* permutation of code lengths */ local
858 state->lens[order[state->have++]] = (unsigned short)BITS(3);
862 state->lens[order[state->have++]] = 0;
    [all...]
  /external/skia/src/svg/
SkSVGParser.cpp 297 static const int order[] = {0, 3, 1, 4, 2, 5}; local
298 const int* orderPtr = order;
  /external/speex/libspeex/
scal.c 75 int *order; member in struct:SpeexDecorrState_
98 st->order = speex_alloc(channels*sizeof(int));
114 st->order[ch] = 10;
159 int order; local
165 order = st->order[ch];
185 st->y[i] = alpha*(x[i-ALLPASS_ORDER+order]-beta*x[i-ALLPASS_ORDER+order-1])*st->vorbis_win[st->frame_size+i+order]
188 - beta*ring[ringID+1>=order?0:ringID+1])
    [all...]
  /external/zlib/contrib/infback9/
infback9.c 249 static const unsigned short order[19] = /* permutation of code lengths */ local
366 state->lens[order[state->have++]] = (unsigned short)BITS(3);
370 state->lens[order[state->have++]] = 0;
  /external/zlib/
inflate.c 544 PULLBYTE() directly in order to pull just enough bytes to decode the next
571 during that inflate() call in order to return the proper return code.
609 static const unsigned short order[19] = /* permutation of code lengths */ local
902 state->lens[order[state->have++]] = (unsigned short)BITS(3);
906 state->lens[order[state->have++]] = 0;
    [all...]
  /frameworks/base/core/java/android/text/format/
DateFormat.java 42 Formatting characters may be repeated in order to get more detailed representations
265 * to the current locale and the user's date-order preference.
355 * 3 elements ({@link #DATE}, {@link #MONTH}, and {@link #YEAR}) in the order
356 * specified by the user's format preference. Note that this order is
360 * order returned here.
363 char[] order = new char[] {DATE, MONTH, YEAR}; local
373 order[index] = DATE;
379 order[index] = MONTH;
385 order[index] = YEAR;
389 return order;
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacenc/inc/
tns.h 48 Word16 maxOrder; /* max. order of tns filter */
104 Word16 order[TRANS_FAC]; member in struct:__anon9163
  /libcore/luni/src/main/java/java/nio/
ByteBuffer.java 114 * The byte order of this buffer, default is {@code BIG_ENDIAN}.
116 ByteOrder order = ByteOrder.BIG_ENDIAN; field in class:ByteBuffer
165 * buffer's read-only property and byte order are the same as this buffer's.
182 * buffer's read-only property and byte order are the same as this buffer's.
200 * buffer's read-only property and byte order are the same as this buffer's.
217 * buffer's read-only property and byte order are the same as this buffer's.
234 * buffer's read-only property and byte order are the same as this buffer's.
266 * buffer's read-only property and byte order are the same as this buffer's.
327 * order are the same as this buffer's too.
445 * according to the current byte order and returned
648 public final ByteOrder order() { method in class:ByteBuffer
661 public final ByteBuffer order(ByteOrder byteOrder) { method in class:ByteBuffer
    [all...]
CharBuffer.java 251 * byte order are the same as this buffer's, too.
407 * Returns the byte order used by this buffer when converting chars from/to
411 * the platform's native byte order.
413 * @return the byte order used by this buffer when converting chars from/to
416 public abstract ByteOrder order(); method in class:CharBuffer
614 * mark is cleared. The new buffer's read-only property and byte order are
631 * The new buffer's read-only property and byte order are the same as this
DoubleBuffer.java 183 * order are the same as this buffer's, too.
340 * Returns the byte order used by this buffer when converting doubles
344 * the platform's native byte order.
346 * @return the byte order used by this buffer when converting doubles
349 public abstract ByteOrder order(); method in class:DoubleBuffer
492 * mark is cleared. The new buffer's read-only property and byte order are
FloatBuffer.java 184 * as this buffer. The duplicated buffer's read-only property and byte order
340 * Returns the byte order used by this buffer when converting floats from/to
344 * platform's native byte order.
346 * @return the byte order used by this buffer when converting floats from/to
349 public abstract ByteOrder order(); method in class:FloatBuffer
492 * mark is cleared. The new buffer's read-only property and byte order are
IntBuffer.java 181 * as this buffer. The duplicated buffer's read-only property and byte order
328 * Returns the byte order used by this buffer when converting ints from/to
332 * platform's native byte order.
334 * @return the byte order used by this buffer when converting ints from/to
337 public abstract ByteOrder order(); method in class:IntBuffer
480 * mark is cleared. The new buffer's read-only property and byte order are
LongBuffer.java 183 * as this buffer. The duplicated buffer's read-only property and byte order
333 * Returns the byte order used by this buffer when converting longs from/to
337 * platform's native byte order.
339 * @return the byte order used by this buffer when converting longs from/to
342 public abstract ByteOrder order(); method in class:LongBuffer
485 * mark is cleared. The new buffer's read-only property and byte order are
ShortBuffer.java 181 * as this buffer. The duplicated buffer's read-only property and byte order
329 * Returns the byte order used by this buffer when converting shorts from/to
333 * platform's native byte order.
335 * @return the byte order used by this buffer when converting shorts from/to
338 public abstract ByteOrder order(); method in class:ShortBuffer
481 * mark is cleared. The new buffer's read-only property and byte order are
  /system/extras/librank/
librank.c 66 static int order; variable
188 order = -1;
207 if (!strcmp(argv[i], "-R")) { order *= -1; continue; }
306 " (Default sort order is PSS.)\n"
308 " -R Reverse sort order (default is descending).\n"
332 return order * numcmp(
340 return order * compfn( \
  /external/chromium/third_party/icu/source/i18n/
ucal.cpp 580 UResourceBundle *order = ures_getByKey(rb, prefRegion, NULL, status); local
583 order = ures_getByKey(rb, "001", NULL, status);
591 for (int i = 0; i < ures_getSize(order); i++) {
593 const UChar *type = ures_getStringByIndex(order, i, &len, status);
626 ures_close(order);

Completed in 1906 milliseconds

1 23 4 5 6 7