| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_lock/ |
| H A D | 1-1.c | 40 pthread_attr_t pta; in main() local 44 pthread_attr_init(&pta); in main() 45 pthread_attr_setdetachstate(&pta, PTHREAD_CREATE_JOINABLE); in main() 50 pthread_create(&threads[i], &pta, f1, NULL); in main() 55 pthread_attr_destroy(&pta); in main()
|
| /third_party/vk-gl-cts/modules/glshared/ |
| H A D | glsCalibration.cpp | 72 const Vec2& ptA = dataPoints[i]; in theilSenLinearRegression() local 78 if (de::abs(ptA.x() - ptB.x()) > epsilon) in theilSenLinearRegression() 79 pairwiseCoefficients.push_back((ptA.y() - ptB.y()) / (ptA.x() - ptB.x())); in theilSenLinearRegression() 135 const tcu::Vec2& ptA = dataPoints[i]; in theilSenSiegelLinearRegression() local 144 if (de::abs(ptA.x() - ptB.x()) > epsilon) in theilSenSiegelLinearRegression() 145 slopes.push_back((ptA.y() - ptB.y()) / (ptA.x() - ptB.x())); in theilSenSiegelLinearRegression()
|
| /third_party/node/doc/api/ |
| H A D | punycode.md | 54 punycode.decode('maana-pta'); // 'mañana' 70 punycode.encode('mañana'); // 'maana-pta' 89 punycode.toASCII('mañana.com'); // 'xn--maana-pta.com' 108 punycode.toUnicode('xn--maana-pta.com'); // 'mañana.com'
|
| H A D | punycode.json | 40 "desc": "<p>The <code>punycode.decode()</code> method converts a <a href=\"https://tools.ietf.org/html/rfc3492\">Punycode</a> string of ASCII-only\ncharacters to the equivalent string of Unicode codepoints.</p>\n<pre><code class=\"language-js\">punycode.decode('maana-pta'); // 'mañana'\npunycode.decode('--dqo34k'); // '☃-⌘'\n</code></pre>" 63 "desc": "<p>The <code>punycode.encode()</code> method converts a string of Unicode codepoints to a\n<a href=\"https://tools.ietf.org/html/rfc3492\">Punycode</a> string of ASCII-only characters.</p>\n<pre><code class=\"language-js\">punycode.encode('mañana'); // 'maana-pta'\npunycode.encode('☃-⌘'); // '--dqo34k'\n</code></pre>" 86 "desc": "<p>The <code>punycode.toASCII()</code> method converts a Unicode string representing an\nInternationalized Domain Name to <a href=\"https://tools.ietf.org/html/rfc3492\">Punycode</a>. Only the non-ASCII parts of the\ndomain name will be converted. Calling <code>punycode.toASCII()</code> on a string that\nalready only contains ASCII characters will have no effect.</p>\n<pre><code class=\"language-js\">// encode domain names\npunycode.toASCII('mañana.com'); // 'xn--maana-pta.com'\npunycode.toASCII('☃-⌘.com'); // 'xn----dqo34k.com'\npunycode.toASCII('example.com'); // 'example.com'\n</code></pre>" 109 "desc": "<p>The <code>punycode.toUnicode()</code> method converts a string representing a domain name\ncontaining <a href=\"https://tools.ietf.org/html/rfc3492\">Punycode</a> encoded characters into Unicode. Only the <a href=\"https://tools.ietf.org/html/rfc3492\">Punycode</a>\nencoded parts of the domain name are be converted.</p>\n<pre><code class=\"language-js\">// decode domain names\npunycode.toUnicode('xn--maana-pta.com'); // 'mañana.com'\npunycode.toUnicode('xn----dqo34k.com'); // '☃-⌘.com'\npunycode.toUnicode('example.com'); // 'example.com'\n</code></pre>"
|
| H A D | punycode.html | 333 <pre><code class="language-js">punycode.<span class="hljs-title function_">decode</span>(<span class="hljs-string">'maana-pta'</span>); <span class="hljs-comment">// 'mañana'</span> 344 <pre><code class="language-js">punycode.<span class="hljs-title function_">encode</span>(<span class="hljs-string">'mañana'</span>); <span class="hljs-comment">// 'maana-pta'</span> 358 punycode.<span class="hljs-title function_">toASCII</span>(<span class="hljs-string">'mañana.com'</span>); <span class="hljs-comment">// 'xn--maana-pta.com'</span> 372 punycode.<span class="hljs-title function_">toUnicode</span>(<span class="hljs-string">'xn--maana-pta.com'</span>); <span class="hljs-comment">// 'mañana.com'</span>
|
| H A D | all.json | [all...] |
| H A D | all.html | [all...] |
| /third_party/libuv/test/ |
| H A D | test-idna.c | 163 T("mañana.com", "xn--maana-pta.com"); in TEST_IMPL() 171 T("mañana.com", "xn--maana-pta.com"); in TEST_IMPL() 172 T("mañana。com", "xn--maana-pta.com"); in TEST_IMPL() 173 T("mañana.com", "xn--maana-pta.com"); in TEST_IMPL() 174 T("mañana。com", "xn--maana-pta.com"); in TEST_IMPL()
|
| /device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/ |
| H A D | mali_sync.c | 164 static int timeline_compare(struct sync_pt *pta, struct sync_pt *ptb) in timeline_compare() argument 170 MALI_DEBUG_ASSERT_POINTER(pta); in timeline_compare() 172 mpta = to_mali_sync_pt(pta); in timeline_compare()
|
| /device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/ |
| H A D | mali_sync.c | 160 static int timeline_compare(struct sync_pt *pta, struct sync_pt *ptb) in timeline_compare() argument 166 MALI_DEBUG_ASSERT_POINTER(pta); in timeline_compare() 168 mpta = to_mali_sync_pt(pta); in timeline_compare()
|
| /third_party/skia/src/gpu/ops/ |
| H A D | AAHairLinePathRenderer.cpp | 501 void intersect_lines(const SkPoint& ptA, const SkVector& normA, in intersect_lines() argument 505 SkScalar lineAW = -normA.dot(ptA); in intersect_lines() 512 *result = (ptA + ptB)*SK_ScalarHalf; in intersect_lines()
|
| /third_party/python/Objects/ |
| H A D | obmalloc.c | 1164 #define PTA(x) ((poolp )((uint8_t *)&(usedpools[2*(x)]) - 2*sizeof(block *))) macro 1165 #define PT(x) PTA(x), PTA(x)
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
| H A D | qca-vendor.h | 527 * Due to PTA master limitation, Zigbee joining network success rate is 530 * PTA master. All these parameters are delivered by the attributes
|
| /third_party/eudev/hwdb/ |
| H A D | 20-acpi-vendor.hwdb | 5472 acpi:PTA*:
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
| H A D | qca-vendor.h | 554 * Due to PTA master limitation, Zigbee joining network success rate is 557 * PTA master. All these parameters are delivered by the attributes
|
| /third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/ |
| H A D | hdr-rgb-canarywharf.hdr | 925 ooprrpnmjiB�������������������������������������������������������������������g������������������������������������������������������������������������������������������������������ۄڀ����������������ƅ���횛����������������Ȯ�������˰�������ͻ������������������������������������������������������Ѩ�������Ф��ŀ�½�����������������������������������������������������������������������ٽ������ع�����������������������������ҹ����������ٵoǷ�����ϼ���ۚ��°��Բ��������θ����������֏�����算������ֳ�������������Ѳ��������������������������������������
���������������������������������������������������F������������������������������������������������������������������������������������������� ������������������������������������������Â��������������������������������������������ɂ���� EINMLKLJLMMNLMMMNNL�MPRTSSTSRQNLLLKLNNMONLLLKK�L
KJIIKLLMMMNNN�LJKKJLKLLLMNOMNNOSTVUVWTUUSR�QSQRPSTVV�WVUVWWVVUUUTPLMNLMOMLLMNMLQUXW�V�SQPQRSXWZYYUPLKGB@>?@AADHGEECCEDDCBDDAABCCBBCBEEf��]>ACCEEALe9985415;q@==<;:98^R>>?>>?AIrIGEGEGEIjSE@?CCGISoNMH_fKHIkSGR��iLKRn�QTY[UNQQg\RSTQNMQPdUSSTSSVJ}caba_`gPkfcb^\[VDdWDDB@BA9[ZIJKNST?`\POKIJJdkYVXY[_[pta`eedgG\tf]XSTNl{fdd^ZX[nabfklf]gdZTOI?=kMGJOP�CalJILRX^Qe\XUN8`fMPTSJVkVTWZOfpYKEB8`iVQLJ6Ni[[YKUfOLQMdRgZ[Y4KaGDJrGeSW\@_pcVD^hWRJf�]tn^VeGJJweSEBc_TEC9_PJJIF}\jmopoqpsrsqrrsruututstuuuvwwyxy�z2y{{{yvvvy{}���������������������EFFGFFEFGGJKKLMLL�M�NLIJJKKKJJJKLKLKIIHHGFEGJMKKNQTWZ[^`cgklmmosvwvvuttuuuqlighfghhghhfa_`a_][XWXYZXWNFDEDDEGIJKLMLKJHFEFHHHIIIHKMNNMOQRTSRTSTSSRSSP ONOPORSSRRRQPPQPPQRPQPOORVXXXVSNy~��������������������������������������������������~~}}�������������������������������������������������������������������������������������������������������}xvsxx{z{~~{zxx{yzyxyywwxxyxuvts`����zz��������v|}|xtvw�u��}}|y�vttussqpt�rrttqrtn�rmkkmklp{�por��qnp�xnx�ވqst�������{����������s��������t��������p��������l��tpqjfcSvzlklqsw[|zkhiikk�����������������et���xtui����~ttpw�������v�����k_�kjovw\��flw���r������Vz�ms|wam�w���x}���whTy�snnpNh����ss�qnrg�m����Tl�khl�`�y��T���~a}�tmc��y���p�Yio��kbg��mdiP�pnjbf���������������������������D��������������������������������������������[]]^]]\]^^`a`abaabbbaa`^�`__`abab`^^`�_�^_acdegjloprsux}}}~~�����������}zzyyz||zyxwvvuspomklnomjga^\Z[^ababbbab`_^\]^^__`bbbcdfedffijjlkjhhhiigdcefgjjkljiihhgijjhhkih filmnomjf�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ʎ�̺��������ѹ������ǿĮ��������������������������������������������������̰�����������������À��Ť�������ѧ�������������ը���������������������������������������❡�ȿ����ؾ�������������������ĭ��������IJ����������݀ΘӸ����������վ���ȹ��ϳ��������۹ߴ����ۘ���ژ�ì�������Ӛ���Ģ����������ȳ���������?������������������������������������+�������������������������������������������� [all...] |
| H A D | hdr-rgb-arboretum.hdr | [all...] |
| H A D | hdr-rgb-riverwalk.hdr | [all...] |
| /third_party/libphonenumber/resources/ |
| H A D | PhoneNumberMetadata.xml | 15073 <!-- http://www.pta.is/default.aspx?cat_id=85 -->
|
| /third_party/NuttX/ |
| H A D | ReleaseNotes | [all...] |
| /applications/standard/app_samples/code/BasicFeature/Graphics/Graphics3d/entry/src/main/resources/rawfile/gltf/BrainStem/glTF-Embedded/ |
| H A D | BrainStem.gltf | [all...] |
| /test/xts/acts/graphic/component3D/AppScope/resources/rawfile/gltf/BrainStem/glTF-Embedded/ |
| H A D | BrainStem.gltf | [all...] |
| /test/xts/acts/graphic/graphic3D/AppScope/resources/rawfile/gltf/BrainStem/glTF-Embedded/ |
| H A D | BrainStem.gltf | [all...] |
| /third_party/skia/third_party/externals/expat/testdata/largefiles/ |
| H A D | nes96.xml | [all...] |
| /third_party/mindspore/patches/ |
| H A D | 0001-build-gn-c-api-for-OHOS.patch | [all...] |