Searched refs:order (Results 301 - 325 of 874) sorted by relevance

<<11121314151617181920>>

/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DTestEnumMultisetGenerator.java63 public List<AnEnum> order(List<AnEnum> insertionOrder) { method in class:TestEnumMultisetGenerator
/external/icu/icu4c/source/test/cintltst/
H A Dcallcoll.h36 int32_t order; member in struct:OrderAndOffset
/external/icu/icu4c/source/test/intltest/
H A Dtscoll.h30 int32_t order; member in struct:IntlTestCollator::Order
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DValidationTestUtil.java62 copiedData.order(ByteOrder.LITTLE_ENDIAN);
/external/libvorbis/lib/
H A Dbackends.h42 int order; member in struct:__anon11677
/external/mesa3d/docs/
H A DMESA_pixmap_colormap.spec34 in order to compute pixel values during rendering.
64 pixmaps of any visual class, not just TrueColor or DirectColor. In order
/external/pdfium/core/fxcrt/
H A Dfx_basic_gcc.cpp69 T order = uvalue / radix; local
70 while (order > 0) {
72 order = order / radix;
/external/syslinux/com32/lib/x86_64/
H A Dsetjmp.S8 # The jmp_buf is assumed to contain the following, in order:
/external/valgrind/helgrind/tests/
H A Dhg02_deadlock.stderr.exp11 Thread #x: lock order "0x........ before 0x........" violated
13 Observed (incorrect) order is: acquisition of lock at 0x........
27 Required order was established by acquisition of lock at 0x........
H A Dtc13_laog1.stderr.exp8 Thread #x: lock order "0x........ before 0x........" violated
10 Observed (incorrect) order is: acquisition of lock at 0x........
20 Required order was established by acquisition of lock at 0x........
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DGlUtil.java53 bb.order(ByteOrder.nativeOrder());
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dlevinson_durbin.c23 size_t order)
40 // Normalize the autocorrelation R[0]...R[order+1]
44 for (i = 0; i <= order; ++i)
101 for (i = 2; i <= order; i++)
231 Set A[0] to 1.0 and store the A[i] i=1...order in Q12
237 for (i = 1; i <= order; i++)
22 WebRtcSpl_LevinsonDurbin(const int32_t* R, int16_t* A, int16_t* K, size_t order) argument
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dcodec.h167 int16_t order,
181 int16_t order,
196 int16_t order,
212 int16_t order,
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_pwd_common.h24 BIGNUM *order; member in struct:group_definition_
/external/wpa_supplicant_8/src/eap_common/
H A Deap_pwd_common.h24 BIGNUM *order; member in struct:group_definition_
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_pwd_common.h24 BIGNUM *order; member in struct:group_definition_
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
H A Dname.py177 """Compare two names, returning a 3-tuple (relation, order, nlabels).
184 I{order} is < 0 if self < other, > 0 if self > other, and ==
187 the DNSSEC order relation is used to order them.
208 order = 0
218 order = -1
221 return (namereln, order, nlabels)
223 order = 1
226 return (namereln, order, nlabels)
228 order
[all...]
/external/deqp/framework/common/
H A DtcuTestLog.cpp69 if (m_access.getFormat().order == tcu::TextureFormat::D)
71 else if (m_access.getFormat().order == tcu::TextureFormat::S)
76 if (m_access.getFormat().order != tcu::TextureFormat::DS)
105 DE_ASSERT(access.getFormat().order != tcu::TextureFormat::DS);
110 if (access.getFormat().order == tcu::TextureFormat::D)
112 if (access.getFormat().order == tcu::TextureFormat::S)
125 if (m_access.getFormat().order != tcu::TextureFormat::DS)
252 && (format.order == TextureFormat::RGB || format.order == TextureFormat::RGBA)
258 bool isRGBA = format.order
[all...]
/external/flac/libFLAC/
H A Dstream_encoder_framing.c379 if(!FLAC__bitwriter_write_raw_uint32(bw, FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK | (subframe->order<<1) | (wasted_bits? 1:0), FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN))
385 for(i = 0; i < subframe->order; i++)
398 subframe->order,
401 subframe->entropy_coding_method.data.partitioned_rice.order,
417 if(!FLAC__bitwriter_write_raw_uint32(bw, FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK | ((subframe->order-1)<<1) | (wasted_bits? 1:0), FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN))
423 for(i = 0; i < subframe->order; i++)
431 for(i = 0; i < subframe->order; i++)
444 subframe->order,
447 subframe->entropy_coding_method.data.partitioned_rice.order,
484 if(!FLAC__bitwriter_write_raw_uint32(bw, method->data.partitioned_rice.order, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LE
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DDerivedCollectionGenerators.java72 public Iterable<Map.Entry<K, V>> order( method in class:DerivedCollectionGenerators.MapEntrySetGenerator
74 return mapGenerator.order(insertionOrder);
153 public Iterable<K> order(List<K> insertionOrder) { method in class:DerivedCollectionGenerators.MapKeySetGenerator
161 for (Entry<K, V> entry : mapGenerator.order(entries)) {
264 public Iterable<V> order(List<V> insertionOrder) { method in class:DerivedCollectionGenerators.MapValueCollectionGenerator
266 castOrCopyToList(mapGenerator.order(castOrCopyToList(
280 throw new IllegalArgumentException("Map.values generator can order only sample values");
301 public Iterable<Entry<K, V>> order(List<Entry<K, V>> insertionOrder) { method in class:DerivedCollectionGenerators.ForwardingTestMapGenerator
302 return delegate.order(insertionOrder);
388 public Iterable<E> order(Lis method in class:DerivedCollectionGenerators.SortedSetSubsetTestSetGenerator
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGrid.java83 .order(ByteOrder.nativeOrder()).asIntBuffer();
85 .order(ByteOrder.nativeOrder()).asIntBuffer();
94 .order(ByteOrder.nativeOrder()).asFloatBuffer();
96 .order(ByteOrder.nativeOrder()).asFloatBuffer();
111 .order(ByteOrder.nativeOrder()).asCharBuffer();
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_pwd.c168 BN_clear_free(data->grp->order);
373 order_len = BN_num_bytes(data->grp->order);
398 if (BN_rand_range(data->private_value, data->grp->order) != 1 ||
399 BN_rand_range(mask, data->grp->order) != 1 ||
401 BN_mod(data->my_scalar, data->my_scalar, data->grp->order,
446 BN_bin2bn(ptr, BN_num_bytes(data->grp->order), data->server_scalar);
460 "server element by order!\n");
487 "shared key point by order");
519 if (((scalar = os_malloc(BN_num_bytes(data->grp->order))) == NULL) ||
528 * sufficiently smaller than the prime or order migh
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_pwd.c154 BN_clear_free(data->grp->order);
222 if (BN_rand_range(data->private_value, data->grp->order) != 1 ||
223 BN_rand_range(mask, data->grp->order) != 1 ||
225 BN_mod(data->my_scalar, data->my_scalar, data->grp->order,
262 if (((scalar = os_malloc(BN_num_bytes(data->grp->order))) == NULL) ||
271 * sufficiently smaller than the prime or order might need pre-pending
274 os_memset(scalar, 0, BN_num_bytes(data->grp->order));
276 offset = BN_num_bytes(data->grp->order) -
286 BN_num_bytes(data->grp->order));
293 wpabuf_put_data(data->outbuf, scalar, BN_num_bytes(data->grp->order));
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_pwd.c168 BN_clear_free(data->grp->order);
373 order_len = BN_num_bytes(data->grp->order);
398 if (BN_rand_range(data->private_value, data->grp->order) != 1 ||
399 BN_rand_range(mask, data->grp->order) != 1 ||
401 BN_mod(data->my_scalar, data->my_scalar, data->grp->order,
446 BN_bin2bn(ptr, BN_num_bytes(data->grp->order), data->server_scalar);
460 "server element by order!\n");
487 "shared key point by order");
519 if (((scalar = os_malloc(BN_num_bytes(data->grp->order))) == NULL) ||
528 * sufficiently smaller than the prime or order migh
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_pwd.c154 BN_clear_free(data->grp->order);
222 if (BN_rand_range(data->private_value, data->grp->order) != 1 ||
223 BN_rand_range(mask, data->grp->order) != 1 ||
225 BN_mod(data->my_scalar, data->my_scalar, data->grp->order,
262 if (((scalar = os_malloc(BN_num_bytes(data->grp->order))) == NULL) ||
271 * sufficiently smaller than the prime or order might need pre-pending
274 os_memset(scalar, 0, BN_num_bytes(data->grp->order));
276 offset = BN_num_bytes(data->grp->order) -
286 BN_num_bytes(data->grp->order));
293 wpabuf_put_data(data->outbuf, scalar, BN_num_bytes(data->grp->order));
[all...]

Completed in 1264 milliseconds

<<11121314151617181920>>