HomeSort by relevance Sort by last modified time
    Searched refs:xx (Results 26 - 50 of 578) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkPoint3.cpp 31 double xx = x; local
34 return (float)sqrt(xx * xx + yy * yy + zz * zz);
60 double xx = fX; local
67 double dscale = 1.0f / sqrt(xx * xx + yy * yy + zz * zz);
73 scale = (float)(1.0f / sqrt(xx * xx + yy * yy + zz * zz));
  /external/skqp/src/core/
SkPoint3.cpp 31 double xx = x; local
34 return (float)sqrt(xx * xx + yy * yy + zz * zz);
60 double xx = fX; local
67 double dscale = 1.0f / sqrt(xx * xx + yy * yy + zz * zz);
73 scale = (float)(1.0f / sqrt(xx * xx + yy * yy + zz * zz));
  /system/nfc/src/nfa/p2p/
nfa_p2p_act.cc 59 uint8_t xx; local
61 for (xx = 0; xx < LLCP_MAX_DATA_LINK; xx++) {
62 if (nfa_p2p_cb.conn_cb[xx].flags == 0) {
63 nfa_p2p_cb.conn_cb[xx].flags |= NFA_P2P_CONN_FLAG_IN_USE;
64 nfa_p2p_cb.conn_cb[xx].local_sap = local_sap;
66 return (xx);
85 static void nfa_p2p_deallocate_conn_cb(uint8_t xx) {
86 if (xx < LLCP_MAX_DATA_LINK)
104 uint8_t xx; local
179 uint8_t xx; local
212 int xx; local
244 uint8_t local_sap, xx; local
287 uint8_t xx; local
331 uint8_t local_sap, xx; local
372 uint8_t local_sap, xx; local
419 uint8_t local_sap, xx; local
482 uint8_t local_sap, remote_sap, xx; local
552 uint8_t local_sap, xx; local
723 uint8_t local_sap, xx; local
777 uint8_t xx; local
806 uint8_t xx; local
834 uint8_t local_sap, xx; local
981 uint8_t xx; local
1028 uint8_t xx; local
    [all...]
nfa_p2p_api.cc 167 tNFA_HANDLE xx; local
171 xx = handle & NFA_HANDLE_MASK;
173 if ((xx >= NFA_P2P_NUM_SAP) || (nfa_p2p_cb.sap_cb[xx].p_cback == NULL)) {
207 tNFA_HANDLE xx; local
212 xx = handle & NFA_HANDLE_MASK;
214 if (!(xx & NFA_P2P_HANDLE_FLAG_CONN)) {
218 xx &= ~NFA_P2P_HANDLE_FLAG_CONN;
221 if ((xx >= LLCP_MAX_DATA_LINK) || (nfa_p2p_cb.conn_cb[xx].flags == 0))
260 tNFA_HANDLE xx; local
312 tNFA_HANDLE xx; local
364 tNFA_HANDLE xx; local
421 tNFA_HANDLE xx; local
479 tNFA_HANDLE xx; local
567 tNFA_HANDLE xx; local
602 tNFA_HANDLE xx; local
642 tNFA_HANDLE xx; local
734 tNFA_HANDLE xx; local
772 tNFA_HANDLE xx; local
810 tNFA_HANDLE xx; local
859 tNFA_HANDLE xx; local
904 tNFA_HANDLE xx; local
    [all...]
  /prebuilts/go/darwin-x86/test/
typeswitch1.go 28 switch xx := x.(type) {
30 return fmt.Sprint("default ", xx)
32 return fmt.Sprint("signed ", xx)
34 return fmt.Sprint("signed64 ", int64(xx))
36 return fmt.Sprint("unsigned ", xx)
38 return fmt.Sprint("unsigned64 ", uint64(xx))
40 return fmt.Sprint("nil ", xx)
46 xx := x
47 switch xx.(type) {
49 return fmt.Sprint("default ", xx)
    [all...]
  /prebuilts/go/linux-x86/test/
typeswitch1.go 28 switch xx := x.(type) {
30 return fmt.Sprint("default ", xx)
32 return fmt.Sprint("signed ", xx)
34 return fmt.Sprint("signed64 ", int64(xx))
36 return fmt.Sprint("unsigned ", xx)
38 return fmt.Sprint("unsigned64 ", uint64(xx))
40 return fmt.Sprint("nil ", xx)
46 xx := x
47 switch xx.(type) {
49 return fmt.Sprint("default ", xx)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_formats.c 127 F3(A, B8G8R8X8_UNORM, BGRX8_UNORM, B, G, R, xx, UNORM, A8B8G8R8, TD),
129 F3(A, B8G8R8X8_SRGB, BGRX8_SRGB, B, G, R, xx, UNORM, A8B8G8R8, TD),
131 F3(A, R8G8B8X8_UNORM, RGBX8_UNORM, R, G, B, xx, UNORM, A8B8G8R8, TB),
133 F3(A, R8G8B8X8_SRGB, RGBX8_SRGB, R, G, B, xx, UNORM, A8B8G8R8, TB),
135 ZX(B, Z16_UNORM, Z16_UNORM, R, R, R, xx, UNORM, Z16, TZ),
136 ZX(A, Z32_FLOAT, Z32_FLOAT, R, R, R, xx, FLOAT, ZF32, TZ),
137 ZX(A, Z24X8_UNORM, Z24_X8_UNORM, R, R, R, xx, UNORM, X8Z24, TZ),
138 SZ(A, X8Z24_UNORM, S8_Z24_UNORM, G, G, G, xx, UNORM, Z24S8, TZ),
139 ZS(A, Z24_UNORM_S8_UINT, Z24_S8_UNORM, R, R, R, xx, UNORM, S8Z24, TZ),
140 SZ(A, S8_UINT_Z24_UNORM, S8_Z24_UNORM, G, G, G, xx, UNORM, Z24S8, TZ)
    [all...]
  /external/clang/test/Analysis/diagnostics/
undef-value-param.c 20 int xx; //expected-note {{'xx' declared without an initial value}} local
21 int *y = &xx;
26 return xx+3; //expected-warning{{The left operand of '+' is a garbage value}}
96 // CHECK-NEXT: <string>&apos;xx&apos; declared without an initial value</string>
98 // CHECK-NEXT: <string>&apos;xx&apos; declared without an initial value</string>
    [all...]
  /frameworks/wilhelm/tools/hashgen/
frag3.c 14 const struct SLInterfaceID_ *xx = SL_IID_array; local
16 for (MPH = 0; MPH < MPH_MAX; ++MPH, ++xx) {
17 if (!memcmp(x, xx, 16)) {
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15747.go 24 func f1(q *Q, xx []byte) interface{} { // ERROR "live at call to newobject: xx$" "live at call to writebarrierptr: &xx$" "live at entry to f1: xx$"
25 // xx was copied from the stack to the heap on the previous line:
26 // xx was live for the first two prints but then it switched to &xx
27 // being live. We should not see plain xx again.
29 global = &xx // ERROR "live at call to writebarrierptr: &xx$
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
issue15747.go 24 func f1(q *Q, xx []byte) interface{} { // ERROR "live at call to newobject: xx$" "live at call to writebarrierptr: &xx$" "live at entry to f1: xx$"
25 // xx was copied from the stack to the heap on the previous line:
26 // xx was live for the first two prints but then it switched to &xx
27 // being live. We should not see plain xx again.
29 global = &xx // ERROR "live at call to writebarrierptr: &xx$
    [all...]
  /external/llvm/test/MC/Mips/mips64r2/
abi-bad.s 2 .set fp=xx
3 # CHECK: error: '.set fp=xx' requires the O32 ABI
4 # CHECK: .set fp=xx
  /external/llvm/test/MC/Mips/mips64r3/
abi-bad.s 2 .set fp=xx
3 # CHECK: error: '.set fp=xx' requires the O32 ABI
4 # CHECK: .set fp=xx
  /external/llvm/test/MC/Mips/mips64r5/
abi-bad.s 2 .set fp=xx
3 # CHECK: error: '.set fp=xx' requires the O32 ABI
4 # CHECK: .set fp=xx
  /toolchain/binutils/binutils-2.27/gas/testsuite/lib/
dostriptest 3 x=striptest.xx.$$
  /system/bt/stack/sdp/
sdp_db.cc 59 uint16_t xx, yy; local
75 for (xx = 0; xx < p_rec->num_attributes; xx++, p_attr++) {
89 if (xx == p_rec->num_attributes) break;
173 uint16_t xx; local
176 for (xx = 0, p_at = &p_rec->attribute[0]; xx < p_rec->num_attributes;
177 xx++, p_at++) {
197 uint16_t xx, yy, len local
299 uint16_t xx, yy, zz; local
358 uint16_t xx, yy, zz; local
476 uint16_t xx; local
550 uint16_t xx; local
625 uint16_t xx; local
759 uint16_t xx; local
795 uint16_t xx, yy; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP384R1Field.java 33 public static void addExt(int[] xx, int[] yy, int[] zz)
35 int c = Nat.add(24, xx, yy, zz);
96 public static void reduce(int[] xx, int[] z)
98 long xx16 = xx[16] & M, xx17 = xx[17] & M, xx18 = xx[18] & M, xx19 = xx[19] & M;
99 long xx20 = xx[20] & M, xx21 = xx[21] & M, xx22 = xx[22] & M, xx23 = xx[23] & M
    [all...]
SecP192R1Field.java 30 public static void addExt(int[] xx, int[] yy, int[] zz)
32 int c = Nat.add(12, xx, yy, zz);
105 public static void reduce(int[] xx, int[] z)
107 long xx06 = xx[6] & M, xx07 = xx[7] & M, xx08 = xx[8] & M;
108 long xx09 = xx[9] & M, xx10 = xx[10] & M, xx11 = xx[11] & M;
114 cc += (xx[0] & M) + t0
    [all...]
  /system/nfc/src/nfa/ee/
nfa_ee_act.cc 121 int xx, yy = 0; local
130 for (xx = 0; xx < len; xx++) {
149 int xx; local
154 for (xx = 0; xx < NFA_EE_NUM_TECH; xx++) {
156 if (p_cb->tech_switch_on & nfa_ee_tech_mask_list[xx])
158 if (p_cb->tech_switch_off & nfa_ee_tech_mask_list[xx])
218 int xx; local
277 int xx; local
549 int len = 0, xx; local
610 int xx, yy, aid_len_offset, offset; local
695 int xx; local
762 int xx; local
1382 int xx; local
1528 int xx; local
1553 int xx, num_removed = 0; local
1601 uint8_t xx; local
1854 uint32_t xx; local
1896 uint8_t xx; local
2206 uint8_t xx; local
2277 int xx; local
2309 int xx, yy; local
2494 uint32_t xx; local
2582 int xx; local
2659 int xx; local
    [all...]
nfa_ee_main.cc 95 int xx; local
101 for (xx = 0; xx < NFA_EE_MAX_EE_SUPPORTED; xx++) {
102 nfa_ee_cb.ecb[xx].nfcee_id = NFA_EE_INVALID;
103 nfa_ee_cb.ecb[xx].ee_status = NFC_NFCEE_STATUS_INACTIVE;
219 uint32_t xx; local
229 for (xx = 0; xx < NFA_EE_MAX_EE_SUPPORTED; xx++, p_cb++)
280 uint32_t xx; local
399 uint32_t xx; local
428 uint32_t xx; local
454 uint32_t xx; local
    [all...]
  /system/nfc/src/nfa/hci/
nfa_hci_utils.cc 54 int xx = 0; local
57 for (; xx < NFA_HCI_MAX_PIPE_CB; xx++, pp++) {
76 int xx = 0; local
78 for (; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++) {
96 int xx = 0; local
98 for (; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++) {
118 int xx = 0 local
137 int xx = 0; local
161 int xx = 0; local
229 int xx; local
391 int xx; local
418 uint8_t xx; local
575 int xx; local
610 int xx; local
644 int xx; local
675 int xx; local
704 uint8_t xx; local
724 uint8_t xx; local
744 uint8_t xx; local
765 int xx; local
847 int xx; local
1308 int xx; local
    [all...]
nfa_hci_main.cc 213 uint8_t xx, yy, zz; local
222 for (xx = 0; xx < NFA_HCI_MAX_APP_CB; xx++) {
224 if (strlen(&nfa_hci_cb.cfg.reg_app_names[xx][0]) > NFA_MAX_HCI_APP_NAME_LEN)
228 if ((nfa_hci_cb.cfg.b_send_conn_evts[xx] != true) &&
229 (nfa_hci_cb.cfg.b_send_conn_evts[xx] != false))
232 if (nfa_hci_cb.cfg.reg_app_names[xx][0] != 0) {
235 for (yy = xx + 1; yy < NFA_HCI_MAX_APP_CB; yy++) {
237 (!strncmp(&nfa_hci_cb.cfg.reg_app_names[xx][0]
546 uint8_t xx; local
    [all...]
  /system/bt/stack/btm/
btm_pm.cc 110 int xx; local
119 for (xx = 0; xx < BTM_MAX_PM_RECORDS; xx++) {
121 if (btm_cb.pm_reg_db[xx].mask == BTM_PM_REC_NOT_USED) {
125 btm_cb.pm_reg_db[xx].cback = p_cb;
127 btm_cb.pm_reg_db[xx].mask = mask;
128 *p_pm_id = xx;
356 int xx; local
366 for (xx = 0; xx < BTM_MAX_PM_RECORDS; xx++)
409 uint8_t xx; local
506 int xx, loop_max; local
673 int xx; local
754 int xx, yy, zz; local
840 int xx, yy; local
    [all...]
btm_sco.cc 439 uint16_t xx; local
461 for (xx = 0; xx < BTM_MAX_SCO_LINKS; xx++, p++) {
472 for (xx = 0; xx < BTM_MAX_SCO_LINKS; xx++, p++) {
483 for (xx = 0, p = &btm_cb.sco_cb.sco_db[0]; xx < BTM_MAX_SCO_LINKS;
484 xx++, p++)
632 uint16_t xx; local
795 uint16_t xx; local
873 int xx; local
949 uint16_t xx; local
972 uint16_t xx; local
1012 uint16_t xx; local
1483 uint16_t xx; local
1522 uint16_t xx; local
1544 uint16_t xx; local
1575 uint8_t xx; local
    [all...]
  /external/ltp/testcases/kernel/controllers/memcg/functional/
memcg_force_empty.sh 61 EXPECT_PASS echo 1xx \> memory.force_empty
66 EXPECT_PASS echo xx \> memory.force_empty

Completed in 650 milliseconds

12 3 4 5 6 7 8 91011>>