Home
last modified time | relevance | path

Searched refs:b05 (Results 1 – 25 of 48) sorted by relevance

12

/external/libmtp/logs/
Dmtp-detect-asus-me301t.txt3 Device 0 (VID=0b05 and PID=4cd0) is UNKNOWN.
6 0b05:4cd0 @ bus 1, dev 6
9 Bus 001 Device 006: ID 0b05:4cd0 ASUSTek Computer, Inc.
Dmtp-detect-asus-zenfone2.txt16 Device 0 (VID=0b05 and PID=5600) is UNKNOWN.
19 0b05:5600 @ bus 5, dev 17
25 Device 0 (VID=0b05 and PID=5600) is UNKNOWN.
28 0b05:5600 @ bus 5, dev 17
39 idVendor: 0b05
Dmtp-detect-asus-memo-pad7.txt5 Bus 002 Device 008: ID 0b05:7772 ASUSTek Computer, Inc.
89 Device 0 (VID=0b05 and PID=7772) is UNKNOWN.
92 0b05:7772 @ bus 2, dev 9
100 idVendor: 0b05
Dmtp-detect-asus-fonepad-8.txt23 Device 0 (VID=0b05 and PID=590f) is UNKNOWN in libmtp v1.1.11.
26 0b05:590f @ bus 1, dev 12
34 idVendor: 0b05
536 Bus 001 Device 012: ID 0b05:590f ASUSTek Computer, Inc.
Dmtp-detect-asus-TF201.txt1 Device 0 (VID=0b05 and PID=4d00) is UNKNOWN.
7 0b05:4d00 @ bus 2, dev 4
16 idVendor: 0b05
Dmtp-detect-asus-me172v.txt2 Device 0 (VID=0b05 and PID=5400) is a Asus ME172V MeMo Pad 7 (MTP).
4 Asus: ME172V MeMo Pad 7 (MTP) (0b05:5400) @ bus 5, dev 4
12 idVendor: 0b05
Dmtp-detect-asus-padfone-2.txt1 Device 0 (VID=0b05 and PID=5211) is UNKNOWN.
4 0b05:5211 @ bus 2, dev 15
18 idVendor: 0b05
Dmtp-detect-asus-memo-pad-fhd10.txt4 Device 0 (VID=0b05 and PID=4cc1) is UNKNOWN.
7 0b05:4cc1 @ bus 4, dev 2
17 idVendor: 0b05
Dmtp-detect-asus-me173x.txt1 Device 0 (VID=0b05 and PID=5410) is UNKNOWN.
7 0b05:5410 @ bus 2, dev 14
16 idVendor: 0b05
Dmtp-detect-asus-fonepad-7.txt1 Device 0 (VID=0b05 and PID=540f) is UNKNOWN.
7 0b05:540f @ bus 1, dev 3
16 idVendor: 0b05
Dmtp-detect-asus-padfone-x.txt5 Device 0 (VID=0b05 and PID=7780) is UNKNOWN.
8 0b05:7780 @ bus 1, dev 19
18 idVendor: 0b05
Dmtp-detect-asus-k00y.txt1 Device 0 (VID=0b05 and PID=540f) is UNKNOWN.
7 0b05:540f @ bus 1, dev 3
16 idVendor: 0b05
Dmtp-detect-asus-zenphone5.txt7 Device 0 (VID=0b05 and PID=5480) is UNKNOWN.
10 0b05:5480 @ bus 2, dev 13
19 idVendor: 0b05
Dmtp-detect-asus-k010.txt3 Device 0 (VID=0b05 and PID=5500) is UNKNOWN.
9 0b05:5500 @ bus 2, dev 14
17 idVendor: 0b05
Dmtp-detect-asus-memo-pad7_2.txt19 ATTR{idVendor}=="0b05", ATTR{idProduct}=="5506", SYMLINK+="libmtp-%k", MODE="660", GROUP="audio", E…
27 0b05:5506 @ bus 1, dev 20
35 idVendor: 0b05
Dmtp-detect-asus-zenfone2-ze550ml.txt17 Device 0 (VID=0b05 and PID=5f02) is UNKNOWN.
20 0b05:5f02 @ bus 3, dev 14
28 idVendor: 0b05
Dmtp-detect-asus-zenpad80.txt2 Device 0 (VID=0b05 and PID=5e0f) is UNKNOWN.
11 0b05:5e0f @ bus 3, dev 15
19 idVendor: 0b05
Dmtp-detect-asus-zenfone-2.txt6 ** [support-requests:#199] Asus ZenFone 2 ZE551ML - VID=0b05 and PID=5f02**
16 Device 0 (VID=0b05 and PID=5f02) is UNKNOWN.
30 idVendor: 0b05
Dmtp-detect-asus-TF700.txt5 0b05:4c90 @ bus 1, dev 12
14 idVendor: 0b05
Dmtp-detect-asus-zenfone-4.txt5 0b05:580f @ bus 1, dev 9
13 idVendor: 0b05
/external/skia/src/core/
DSkMatrix44.cpp460 double b05 = a02 * a13 - a03 * a12; in determinant() local
469 return b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in determinant()
633 double b05 = a02 * a13 - a03 * a12; in invert() local
642 double det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in invert()
657 b05 *= invdet; in invert()
667 inverse->fMat[0][2] = SkDoubleToMScalar(a31 * b05 - a32 * b04 + a33 * b03); in invert()
668 inverse->fMat[0][3] = SkDoubleToMScalar(a22 * b04 - a21 * b05 - a23 * b03); in invert()
671 inverse->fMat[1][2] = SkDoubleToMScalar(a32 * b02 - a30 * b05 - a33 * b01); in invert()
672 inverse->fMat[1][3] = SkDoubleToMScalar(a20 * b05 - a22 * b02 + a23 * b01); in invert()
/external/skqp/src/core/
DSkMatrix44.cpp460 double b05 = a02 * a13 - a03 * a12; in determinant() local
469 return b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in determinant()
633 double b05 = a02 * a13 - a03 * a12; in invert() local
642 double det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in invert()
657 b05 *= invdet; in invert()
667 inverse->fMat[0][2] = SkDoubleToMScalar(a31 * b05 - a32 * b04 + a33 * b03); in invert()
668 inverse->fMat[0][3] = SkDoubleToMScalar(a22 * b04 - a21 * b05 - a23 * b03); in invert()
671 inverse->fMat[1][2] = SkDoubleToMScalar(a32 * b02 - a30 * b05 - a33 * b01); in invert()
672 inverse->fMat[1][3] = SkDoubleToMScalar(a20 * b05 - a22 * b02 + a23 * b01); in invert()
/external/dng_sdk/source/
Ddng_bad_pixels.cpp1180 int32 b05 = p0 [5 * cs]; in FixSingleColumn() local
1309 Abs_int32 (b05 - b63) + in FixSingleColumn()
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Dff2d78fcb06e4a303ae8b9d38be9d1fd.00008b0b.honggfuzz.cov55 …�ldѸJ�����э���O����7����”����z. f�KW|�vͫ�RT����:8ž��n�+}��o Zf��S��b05�'�l�����m����JO�2…
114 …�ldѸJ�����э���O����7����”����z. f�KW|�vͫ�RT����:8ž��n�+}��o Zf��S��b05�'�l�����m����JO�2…
/external/honggfuzz/examples/apache-httpd/corpus_http1/
Dff2d78fcb06e4a303ae8b9d38be9d1fd.00008b0b.honggfuzz.cov55 …�ldѸJ�����э���O����7����”����z. f�KW|�vͫ�RT����:8ž��n�+}��o Zf��S��b05�'�l�����m����JO�2…
114 …�ldѸJ�����э���O����7����”����z. f�KW|�vͫ�RT����:8ž��n�+}��o Zf��S��b05�'�l�����m����JO�2…

12