Home
last modified time | relevance | path

Searched refs:q (Results 1 – 25 of 27) sorted by relevance

12

/system/bt/stack/smp/
Dp_256_ecc_pp.c33 static void p_256_init_point(Point *q) in p_256_init_point() argument
35 memset(q, 0, sizeof(Point)); in p_256_init_point()
38 static void p_256_copy_point(Point *q, Point *p) in p_256_copy_point() argument
40 memcpy(q, p, sizeof(Point)); in p_256_copy_point()
44 static void ECC_Double(Point *q, Point *p, uint32_t keyLength) in ECC_Double() argument
58 multiprecision_init(q->z, keyLength); in ECC_Double()
63 x3=q->x; y3=q->y; z3=q->z; in ECC_Double()
91 static void ECC_Add(Point *r, Point *p, Point *q, uint32_t keyLength) in ECC_Add() argument
106 x2=q->x; y2=q->y; z2=q->z; in ECC_Add()
119 p_256_copy_point(r, q); in ECC_Add()
[all …]
Dp_256_ecc_pp.h59 void ECC_PointMult_Bin_NAF(Point *q, Point *p, DWORD *n, uint32_t keyLength);
61 #define ECC_PointMult(q, p, n, keyLength) ECC_PointMult_Bin_NAF(q, p, n, keyLength) argument
/system/core/libsysutils/src/
DFrameworkListener.cpp102 char *q = tmp; in dispatchCommand() local
113 if (q >= qlimit) in dispatchCommand()
115 *q++ = '\\'; in dispatchCommand()
123 if (q >= qlimit) in dispatchCommand()
125 *q++ = '"'; in dispatchCommand()
127 if (q >= qlimit) in dispatchCommand()
129 *q++ = '\\'; in dispatchCommand()
148 if (q >= qlimit) in dispatchCommand()
150 *q = *p++; in dispatchCommand()
151 if (!quote && *q == ' ') { in dispatchCommand()
[all …]
/system/core/libpixelflinger/
Dfixed.cpp60 int32_t gglRecipQ(GGLfixed x, int q) in gglRecipQ() argument
64 shift += 16-q; in gglRecipQ()
184 uint32_t q = 0; in gglDivQ() local
195 q <<= 8; in gglDivQ()
196 if (n>=0) q |= 128; in gglDivQ()
199 if (n>=0) q |= 64; in gglDivQ()
202 if (n>=0) q |= 32; in gglDivQ()
205 if (n>=0) q |= 16; in gglDivQ()
208 if (n>=0) q |= 8; in gglDivQ()
211 if (n>=0) q |= 4; in gglDivQ()
[all …]
Dscanline.cpp1905 int32_t v, q; in scanline_perspective() member
1972 const int32_t v0 = tc[i].st[j].q; in scanline_perspective()
1978 tc[i].st[j].q = v1; in scanline_perspective()
/system/extras/ksmutils/
Dlookup3.c867 uint8_t q[] = "This is the time for all good men to come to the aid of their country..."; in driver3() local
879 hashword((const uint32_t *)q, (sizeof(q)-1)/4, 13), in driver3()
880 hashword((const uint32_t *)q, (sizeof(q)-5)/4, 13), in driver3()
881 hashword((const uint32_t *)q, (sizeof(q)-9)/4, 13)); in driver3()
882 p = q; in driver3()
884 hashlittle(p, sizeof(q)-1, 13), hashlittle(p, sizeof(q)-2, 13), in driver3()
885 hashlittle(p, sizeof(q)-3, 13), hashlittle(p, sizeof(q)-4, 13), in driver3()
886 hashlittle(p, sizeof(q)-5, 13), hashlittle(p, sizeof(q)-6, 13), in driver3()
887 hashlittle(p, sizeof(q)-7, 13), hashlittle(p, sizeof(q)-8, 13), in driver3()
888 hashlittle(p, sizeof(q)-9, 13), hashlittle(p, sizeof(q)-10, 13), in driver3()
[all …]
/system/extras/simpleperf/
Denvironment_test.cpp32 static bool ModulesMatch(const char* p, const char* q) { in ModulesMatch() argument
33 if (p == nullptr && q == nullptr) { in ModulesMatch()
36 if (p != nullptr && q != nullptr) { in ModulesMatch()
37 return strcmp(p, q) == 0; in ModulesMatch()
/system/core/run-as/
Dpackage.c467 const char* q; in get_package_info() local
510 q = skip_non_spaces(p, end); in get_package_info()
511 if (q == p) in get_package_info()
519 p = string_copy(info->dataDir, sizeof info->dataDir, p, q - p); in get_package_info()
526 p = q; in get_package_info()
534 q = skip_non_spaces(p, end); in get_package_info()
535 if (q == p) in get_package_info()
538 string_copy(info->seinfo, sizeof info->seinfo, p, q - p); in get_package_info()
/system/core/libcutils/
Dsched_policy.c355 char *q; in set_sched_policy() local
359 for (q = p; *q != ')'; q++); in set_sched_policy()
361 strncpy(thread_name, p, (q-p)); in set_sched_policy()
/system/core/libutils/
DUnicode.cpp245 char16_t *q = dst; in strcpy16() local
250 *q++ = ch = *p++; in strcpy16()
267 char16_t *q = dst; in strncpy16() local
273 *q++ = ch = *p++; in strncpy16()
278 *q = 0; in strncpy16()
/system/core/logcat/
Dlogcat.cpp887 char* q = strpbrk( p, " \t\n\r" );; in main() local
889 if (q != NULL) in main()
890 *q = 0; in main()
903 char* q = strpbrk( p, " \t\n\r" ); in main() local
907 if (q != NULL) { in main()
908 len = q - p; in main()
/system/netd/server/
DBandwidthController.h119 QuotaInfo(std::string ifn, int64_t q, int64_t a) in QuotaInfo() argument
120 : ifaceName(ifn), quota(q), alert(a) {}; in QuotaInfo()
DCommandListener.cpp971 for (int q = 3; argc >= 4; q++, argc--) { in runCommand() local
972 rc = gCtls->bandwidthCtrl.setInterfaceSharedQuota(argv[q], atoll(argv[2])); in runCommand()
975 asprintf(&msg, "bandwidth setquotas %s %s failed", argv[2], argv[q]); in runCommand()
993 for (int q = 2; argc >= 3; q++, argc--) { in runCommand() local
994 rc = gCtls->bandwidthCtrl.removeInterfaceSharedQuota(argv[q]); in runCommand()
997 asprintf(&msg, "bandwidth removequotas %s failed", argv[q]); in runCommand()
/system/bt/osi/src/protos/
Dbluetooth.proto46 // https://cs.corp.google.com/#android/system/bt/stack/include/btm_api.h&q=major_computer.
122 // https://cs.corp.google.com/#android/system/bt/stack/include/hcidefs.h&q=failed_establish.
/system/ca-certificates/files/
D559f7c71.011 BggqhkjOPQQDAwNpADBmAjEAj6jcnboMBBf6Fek9LykBl7+BFjNAk2z8+e2AcG+q
D27af790d.013 BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+EVXVMAoG
Da7605362.07 Z6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybTdXnt
D10531352.016 DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q
Dd06393bb.019 IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6
D9576d26b.020 hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM
/system/ca-certificates/google/files/
D27af790d.013 BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+EVXVMAoG
/system/security/softkeymaster/
Dkeymaster_openssl.cpp255 dsa->q = BN_bin2bn(dsa_params->prime_q, dsa_params->prime_q_len, NULL); in generate_dsa_keypair()
256 if (dsa->q == NULL) { in generate_dsa_keypair()
/system/core/libpixelflinger/include/private/pixelflinger/
Dggl_fixed.h93 int32_t gglRecipQ(GGLfixed x, int q) CONST;
/system/tpm/trunks/
Dmock_tpm.h711 TPM2B_ECC_POINT* q,
Dtpm_generated.h4965 const TPM2B_ECC_POINT& q,
4975 TPM2B_ECC_POINT* q,
4987 TPM2B_ECC_POINT* q,

12