Searched refs:prime (Results 1 - 25 of 113) sorted by relevance

12345

/external/libvorbis/lib/
H A Dlpc.h26 extern void vorbis_lpc_predict(float *coeff,float *prime,int m,
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DJDKRandomGenerator.java40 // the following number is the largest prime that fits in 32 bits (it is 2^32 - 5)
41 final long prime = 4294967291l;
45 combined = combined * prime + s;
/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DDataHeader.java51 final int prime = 31;
53 result = prime * result + elementsOrVersion;
54 result = prime * result + size;
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DTypedRange.java81 final int prime = 31;
83 result = prime * result + (int) (length ^ (length >>> 32));
84 result = prime * result + ((metadata == null) ? 0 : metadata.hashCode());
85 result = prime * result + (int) (offset ^ (offset >>> 32));
/external/junit/src/main/java/org/junit/runners/parameterized/
H A DTestWithParameters.java48 int prime = 14747;
49 int result = prime + name.hashCode();
50 result = prime * result + testClass.hashCode();
51 return prime * result + parameters.hashCode();
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
H A DAbstractHuman.java51 final int prime = 31;
53 result = prime * result + ((birthPlace == null) ? 0 : birthPlace.hashCode());
54 result = prime * result + ((birthday == null) ? 0 : birthday.hashCode());
55 result = prime * result + ((name == null) ? 0 : name.hashCode());
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/
H A DBigJavaBean.java78 final int prime = 31;
80 result = prime * result + ((address == null) ? 0 : address.hashCode());
81 result = prime * result + ((data == null) ? 0 : data.hashCode());
82 result = prime * result + ((description == null) ? 0 : description.hashCode());
83 result = prime * result + id;
84 result = prime * result + ((name == null) ? 0 : name.hashCode());
85 result = prime * result + ((numbers == null) ? 0 : numbers.hashCode());
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
H A DDeltaDescriptor.java100 final int prime = 31;
103 prime * result
106 prime * result
108 result = prime * result + (int) (deltaLength ^ (deltaLength >>> 32));
109 result = prime * result + ((format == null) ? 0 : format.hashCode());
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
H A DPictureParameterSet.java285 final int prime = 31;
287 result = prime * result + Arrays.hashCode(bottom_right);
288 result = prime * result + chroma_qp_index_offset;
289 result = prime * result + (constrained_intra_pred_flag ? 1231 : 1237);
290 result = prime * result
292 result = prime * result + (entropy_coding_mode_flag ? 1231 : 1237);
293 result = prime * result
295 result = prime * result + num_ref_idx_l0_active_minus1;
296 result = prime * result + num_ref_idx_l1_active_minus1;
297 result = prime * resul
[all...]
/external/jcommander/src/main/java/com/beust/jcommander/
H A DStringKey.java25 final int prime = 31;
27 result = prime * result + ((m_name == null) ? 0 : m_name.hashCode());
/external/mockito/src/test/java/org/mockitousage/stubbing/
H A DCloningParameterTest.java67 final int prime = 31;
69 result = prime * result + getOuterType().hashCode();
70 result = prime * result + (emailSent ? 1231 : 1237);
71 result = prime * result + ((name == null) ? 0 : name.hashCode());
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Ddh_groups.h16 const u8 *prime; member in struct:dh_group
/external/wpa_supplicant_8/src/crypto/
H A Ddh_groups.h16 const u8 *prime; member in struct:dh_group
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Ddh_groups.h16 const u8 *prime; member in struct:dh_group
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DX509PublicKey.java64 final int prime = 31;
66 result = prime * result + ((algorithm == null) ? 0 : algorithm.hashCode());
67 result = prime * result + Arrays.hashCode(encoded);
/external/testng/src/main/java/org/testng/internal/
H A DConstructorOrMethod.java47 final int prime = 31;
49 result = prime * result + ((getConstructor() == null) ? 0 : getConstructor().hashCode());
50 result = prime * result + ((getMethod() == null) ? 0 : getMethod().hashCode());
/external/testng/src/main/java/org/testng/internal/collections/
H A DPair.java28 final int prime = 31;
30 result = prime * result + ((first == null) ? 0 : first.hashCode());
31 result = prime * result + ((second == null) ? 0 : second.hashCode());
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DVectorialCovariance.java124 final int prime = 31;
126 result = prime * result + (isBiasCorrected ? 1231 : 1237);
127 result = prime * result + (int) (n ^ (n >>> 32));
128 result = prime * result + Arrays.hashCode(productsSums);
129 result = prime * result + Arrays.hashCode(sums);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_pwd_common.c145 grp->prime = NULL;
156 ((grp->prime = BN_new()) == NULL) ||
162 if (!EC_GROUP_get_curve_GFp(grp->group, grp->prime, NULL, NULL, NULL))
164 wpa_printf(MSG_INFO, "EAP-pwd: unable to get prime for GFp "
177 primebitlen = BN_num_bits(grp->prime);
178 primebytelen = BN_num_bytes(grp->prime);
196 * compute counter-mode password value and stretch to prime
231 if (BN_ucmp(x_candidate, grp->prime) >= 0)
293 BN_clear_free(grp->prime);
294 grp->prime
[all...]
/external/wpa_supplicant_8/src/eap_common/
H A Deap_pwd_common.c145 grp->prime = NULL;
156 ((grp->prime = BN_new()) == NULL) ||
162 if (!EC_GROUP_get_curve_GFp(grp->group, grp->prime, NULL, NULL, NULL))
164 wpa_printf(MSG_INFO, "EAP-pwd: unable to get prime for GFp "
177 primebitlen = BN_num_bits(grp->prime);
178 primebytelen = BN_num_bytes(grp->prime);
196 * compute counter-mode password value and stretch to prime
231 if (BN_ucmp(x_candidate, grp->prime) >= 0)
293 BN_clear_free(grp->prime);
294 grp->prime
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_pwd_common.c145 grp->prime = NULL;
156 ((grp->prime = BN_new()) == NULL) ||
162 if (!EC_GROUP_get_curve_GFp(grp->group, grp->prime, NULL, NULL, NULL))
164 wpa_printf(MSG_INFO, "EAP-pwd: unable to get prime for GFp "
177 primebitlen = BN_num_bits(grp->prime);
178 primebytelen = BN_num_bytes(grp->prime);
196 * compute counter-mode password value and stretch to prime
231 if (BN_ucmp(x_candidate, grp->prime) >= 0)
293 BN_clear_free(grp->prime);
294 grp->prime
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_pwd.c155 BN_clear_free(data->grp->prime);
263 ((element = os_malloc(BN_num_bytes(data->grp->prime) * 2)) ==
271 * sufficiently smaller than the prime or order might need pre-pending
275 os_memset(element, 0, BN_num_bytes(data->grp->prime) * 2);
280 offset = BN_num_bytes(data->grp->prime) - BN_num_bytes(x);
282 offset = BN_num_bytes(data->grp->prime) - BN_num_bytes(y);
283 BN_bn2bin(y, element + BN_num_bytes(data->grp->prime) + offset);
285 data->outbuf = wpabuf_alloc(2 * BN_num_bytes(data->grp->prime) +
292 2 * BN_num_bytes(data->grp->prime));
322 /* Each component of the cruft will be at most as big as the prime */
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_pwd.c155 BN_clear_free(data->grp->prime);
263 ((element = os_malloc(BN_num_bytes(data->grp->prime) * 2)) ==
271 * sufficiently smaller than the prime or order might need pre-pending
275 os_memset(element, 0, BN_num_bytes(data->grp->prime) * 2);
280 offset = BN_num_bytes(data->grp->prime) - BN_num_bytes(x);
282 offset = BN_num_bytes(data->grp->prime) - BN_num_bytes(y);
283 BN_bn2bin(y, element + BN_num_bytes(data->grp->prime) + offset);
285 data->outbuf = wpabuf_alloc(2 * BN_num_bytes(data->grp->prime) +
292 2 * BN_num_bytes(data->grp->prime));
322 /* Each component of the cruft will be at most as big as the prime */
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_pwd.c155 BN_clear_free(data->grp->prime);
263 ((element = os_malloc(BN_num_bytes(data->grp->prime) * 2)) ==
271 * sufficiently smaller than the prime or order might need pre-pending
275 os_memset(element, 0, BN_num_bytes(data->grp->prime) * 2);
280 offset = BN_num_bytes(data->grp->prime) - BN_num_bytes(x);
282 offset = BN_num_bytes(data->grp->prime) - BN_num_bytes(y);
283 BN_bn2bin(y, element + BN_num_bytes(data->grp->prime) + offset);
285 data->outbuf = wpabuf_alloc(2 * BN_num_bytes(data->grp->prime) +
292 2 * BN_num_bytes(data->grp->prime));
322 /* Each component of the cruft will be at most as big as the prime */
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_pwd.c169 BN_clear_free(data->grp->prime);
336 BN_num_bits(data->grp->prime));
372 prime_len = BN_num_bytes(data->grp->prime);
442 BN_bin2bn(ptr, BN_num_bytes(data->grp->prime), x);
443 ptr += BN_num_bytes(data->grp->prime);
444 BN_bin2bn(ptr, BN_num_bytes(data->grp->prime), y);
445 ptr += BN_num_bytes(data->grp->prime);
520 ((element = os_malloc(BN_num_bytes(data->grp->prime) * 2)) ==
528 * sufficiently smaller than the prime or order might need pre-pending
532 os_memset(element, 0, BN_num_bytes(data->grp->prime) *
[all...]

Completed in 705 milliseconds

12345