/external/dropbear/libtommath/ |
bn_mp_lcm.c | 21 int res; local 25 if ((res = mp_init_multi (&t1, &t2, NULL)) != MP_OKAY) { 26 return res; 30 if ((res = mp_gcd (a, b, &t1)) != MP_OKAY) { 37 if ((res = mp_div(a, &t1, &t2, NULL)) != MP_OKAY) { 40 res = mp_mul(b, &t2, c); 43 if ((res = mp_div(b, &t1, &t2, NULL)) != MP_OKAY) { 46 res = mp_mul(a, &t2, c); 54 return res;
|
bn_mp_n_root.c | 31 int res, neg; local 38 if ((res = mp_init (&t1)) != MP_OKAY) { 39 return res; 42 if ((res = mp_init (&t2)) != MP_OKAY) { 46 if ((res = mp_init (&t3)) != MP_OKAY) { 59 if ((res = mp_copy (&t2, &t1)) != MP_OKAY) { 66 if ((res = mp_expt_d (&t1, b - 1, &t3)) != MP_OKAY) { 72 if ((res = mp_mul (&t3, &t1, &t2)) != MP_OKAY) { 77 if ((res = mp_sub (&t2, a, &t2)) != MP_OKAY) { 83 if ((res = mp_mul_d (&t3, b, &t3)) != MP_OKAY) { [all...] |
/external/dropbear/libtommath/etc/ |
drprime.c | 7 int res, x, y; local 30 res = 0; 34 mp_prime_is_prime(&a, 1, &res); 35 if (res == 0) continue; 39 mp_prime_is_prime(&b, 3, &res); 40 if (res == 0) continue; 41 mp_prime_is_prime(&a, 3, &res); 42 if (res == 1) break; 45 if (res != 1) {
|
mersenne.c | 12 int res, k; local 16 if ((res = mp_init (&n)) != MP_OKAY) { 17 return res; 20 if ((res = mp_init (&u)) != MP_OKAY) { 25 if ((res = mp_2expt(&n, s)) != MP_OKAY) { 28 if ((res = mp_sub_d (&n, 1, &n)) != MP_OKAY) { 38 if ((res = mp_sqr (&u, &u)) != MP_OKAY) { 41 if ((res = mp_sub_d (&u, 2, &u)) != MP_OKAY) { 47 if ((res = mp_add (&u, &n, &u)) != MP_OKAY) { 53 if ((res = mp_reduce_2k (&u, &n, 1)) != MP_OKAY) [all...] |
/external/icu4c/samples/ufortune/resources/ |
fortune_resources.mak | 14 # .res file must be added to this list, AND to the file res-file-list.txt 16 RESFILES= root.res es.res 36 # the definition for .txt to .res. 41 # Inference rule, for compiling a .txt file into a .res file. 42 # -t fools make into thinking there are files such as es.res, etc 44 .txt.res: 53 $(ICUDIR)\$(BIN)\pkgdata --name fortune_resources -v --mode dll -d . res-file-list.txt
|
/bionic/libc/include/sys/ |
time.h | 56 #define timeradd(a, b, res) \ 58 (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ 59 (res)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ 60 if ((res)->tv_usec >= 1000000) { \ 61 (res)->tv_usec -= 1000000; \ 62 (res)->tv_sec += 1; \ 66 #define timersub(a, b, res) \ 68 (res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ 69 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ 70 if ((res)->tv_usec < 0) { [all...] |
/ndk/build/platforms/android-3/arch-arm/usr/include/sys/ |
time.h | 56 #define timeradd(a, b, res) \ 58 (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ 59 (res)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ 60 if ((res)->tv_usec >= 1000000) { \ 61 (res)->tv_usec -= 1000000; \ 62 (res)->tv_sec += 1; \ 66 #define timersub(a, b, res) \ 68 (res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ 69 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ 70 if ((res)->tv_usec < 0) { [all...] |
/ndk/build/platforms/android-4/arch-arm/usr/include/sys/ |
time.h | 56 #define timeradd(a, b, res) \ 58 (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ 59 (res)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ 60 if ((res)->tv_usec >= 1000000) { \ 61 (res)->tv_usec -= 1000000; \ 62 (res)->tv_sec += 1; \ 66 #define timersub(a, b, res) \ 68 (res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ 69 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ 70 if ((res)->tv_usec < 0) { [all...] |
/ndk/build/platforms/android-5/arch-arm/usr/include/sys/ |
time.h | 56 #define timeradd(a, b, res) \ 58 (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ 59 (res)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ 60 if ((res)->tv_usec >= 1000000) { \ 61 (res)->tv_usec -= 1000000; \ 62 (res)->tv_sec += 1; \ 66 #define timersub(a, b, res) \ 68 (res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ 69 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ 70 if ((res)->tv_usec < 0) { [all...] |
/ndk/build/platforms/android-5/arch-x86/usr/include/sys/ |
time.h | 56 #define timeradd(a, b, res) \ 58 (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ 59 (res)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ 60 if ((res)->tv_usec >= 1000000) { \ 61 (res)->tv_usec -= 1000000; \ 62 (res)->tv_sec += 1; \ 66 #define timersub(a, b, res) \ 68 (res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ 69 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ 70 if ((res)->tv_usec < 0) { [all...] |
/ndk/build/platforms/android-8/arch-arm/usr/include/sys/ |
time.h | 56 #define timeradd(a, b, res) \ 58 (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ 59 (res)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ 60 if ((res)->tv_usec >= 1000000) { \ 61 (res)->tv_usec -= 1000000; \ 62 (res)->tv_sec += 1; \ 66 #define timersub(a, b, res) \ 68 (res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ 69 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ 70 if ((res)->tv_usec < 0) { [all...] |
/ndk/build/platforms/android-8/arch-x86/usr/include/sys/ |
time.h | 56 #define timeradd(a, b, res) \ 58 (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ 59 (res)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ 60 if ((res)->tv_usec >= 1000000) { \ 61 (res)->tv_usec -= 1000000; \ 62 (res)->tv_sec += 1; \ 66 #define timersub(a, b, res) \ 68 (res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ 69 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ 70 if ((res)->tv_usec < 0) { [all...] |
/prebuilt/sdk/5/ |
android.jar | |
/development/tutorials/NotepadCodeLab/Notepadv1/res/layout/ |
notepad_list.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
/external/srec/config/en.us/ |
run-bothtags5-from-saved.sh | 4 # mv -f recog4.res recog4_SHIP_bothtags5_from_saved.res 12 cat recog4.res > recog4_SHIP_bothtags5_from_saved.res
|
run-bothtags5.sh | 4 # mv -f recog4.res recog4_SHIP_bothtags5.res 12 cat recog4.res > recog4_SHIP_bothtags5.res
|
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/ |
scan_helpers.c | 22 const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie) 26 pos = (const u8 *) (res + 1); 27 end = pos + res->ie_len; 41 const u8 * wpa_scan_get_vendor_ie(const struct wpa_scan_res *res, 46 pos = (const u8 *) (res + 1); 47 end = pos + res->ie_len; 62 struct wpabuf * wpa_scan_get_vendor_ie_multi(const struct wpa_scan_res *res, 68 buf = wpabuf_alloc(res->ie_len); 72 pos = (const u8 *) (res + 1); 73 end = pos + res->ie_len [all...] |
/frameworks/base/core/tests/coretests/res/raw/ |
install_app1_cert1 | |
install_app1_cert2 | |
install_app1_cert3 | |
install_app2_cert1 | |
install_app2_cert2 | |
install_app2_cert3 | |
/frameworks/base/tools/aapt/tests/plurals/ |
AndroidManifest.xml | 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
/packages/apps/Camera/res/drawable/ |
camera_background.xml | 2 <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
|