/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | __rem_pio2_large.c | 275 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; in __rem_pio2_large() local 304 iq[i] = (int32_t)(z - 0x1p24*fw); in __rem_pio2_large() 315 i = iq[jz-1]>>(24-q0); n += i; in __rem_pio2_large() 316 iq[jz-1] -= i<<(24-q0); in __rem_pio2_large() 317 ih = iq[jz-1]>>(23-q0); in __rem_pio2_large() 319 else if (q0 == 0) ih = iq[jz-1]>>23; in __rem_pio2_large() 325 j = iq[i]; in __rem_pio2_large() 329 iq[i] = 0x1000000 - j; in __rem_pio2_large() 332 iq[i] = 0xffffff - j; in __rem_pio2_large() 337 iq[jz-1] &= 0x7fffff; break; in __rem_pio2_large() [all …]
|
/third_party/musl/src/math/ |
D | __rem_pio2_large.c | 275 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; in __rem_pio2_large() local 304 iq[i] = (int32_t)(z - 0x1p24*fw); in __rem_pio2_large() 315 i = iq[jz-1]>>(24-q0); n += i; in __rem_pio2_large() 316 iq[jz-1] -= i<<(24-q0); in __rem_pio2_large() 317 ih = iq[jz-1]>>(23-q0); in __rem_pio2_large() 319 else if (q0 == 0) ih = iq[jz-1]>>23; in __rem_pio2_large() 325 j = iq[i]; in __rem_pio2_large() 329 iq[i] = 0x1000000 - j; in __rem_pio2_large() 332 iq[i] = 0xffffff - j; in __rem_pio2_large() 337 iq[jz-1] &= 0x7fffff; break; in __rem_pio2_large() [all …]
|
/third_party/ffmpeg/libavcodec/x86/ |
D | pngdsp.asm | 38 xor iq, iq 45 movu m0, [src2q+iq] 46 movu m1, [src2q+iq+mmsize] 47 paddb m0, [src1q+iq] 48 paddb m1, [src1q+iq+mmsize] 49 movu [dstq+iq ], m0 50 movu [dstq+iq+mmsize], m1 51 add iq, mmsize*2 53 cmp iq, waq 62 movq mm0, [src1q+iq] [all …]
|
D | aacpsdsp.asm | 176 movsxdifnidn iq, id 178 lea inq, [inq+iq*4] 287 movsxdifnidn iq, id 289 lea outq, [outq+iq*4]
|
/third_party/ffmpeg/libavutil/x86/ |
D | lls.asm | 53 lea varq, [varq + iq*8] 54 neg iq 58 mova m1, [varq + iq*8] 59 mova m3, [varq + iq*8 + 16] 69 lea jq, [iq + 2] 108 add iq, 4 114 mov jq, iq 117 movsd m0, [varq + iq*8] 121 inc iq 136 mova ymm1, [varq + iq*8] [all …]
|
/third_party/jerryscript/jerry-libm/ |
D | trig.c | 192 int jz, jx, jv, jp, jk, carry, n, iq[20], i, j, k, m, q0, ih; in __kernel_rem_pio2() local 232 iq[i] = (int) (z - two24 * fw); in __kernel_rem_pio2() 244 i = (iq[jz - 1] >> (24 - q0)); in __kernel_rem_pio2() 246 iq[jz - 1] -= i << (24 - q0); in __kernel_rem_pio2() 247 ih = iq[jz - 1] >> (23 - q0); in __kernel_rem_pio2() 251 ih = iq[jz - 1] >> 23; in __kernel_rem_pio2() 264 j = iq[i]; in __kernel_rem_pio2() 270 iq[i] = 0x1000000 - j; in __kernel_rem_pio2() 275 iq[i] = 0xffffff - j; in __kernel_rem_pio2() 284 iq[jz - 1] &= 0x7fffff; in __kernel_rem_pio2() [all …]
|
/third_party/ffmpeg/libavfilter/x86/ |
D | vf_atadenoise.asm | 58 mov iq, midq 69 inc iq 93 mov srcfxq, [srcfq + iq * 8] 117 cmp iq, sizeq 172 mov iq, midq 216 inc iq 218 mov srcfxq, [srcfq + iq * 8] 242 cmp iq, sizeq
|
D | avf_showcqt.asm | 43 movaps m%5, [srcq + 8 * iq] 44 movaps m%7, [srcq + 8 * iq + mmsize] 51 movups m%5, [srcq + 8 * iq - mmsize + 8] 52 movups m%7, [srcq + 8 * iq - 2*mmsize + 8]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | TransliteratorParser.java | 509 int iq = rule.indexOf(QUOTE, pos); in parseSection() local 510 if (iq == pos) { in parseSection() 522 if (iq < 0) { in parseSection() 525 buf.append(rule.substring(pos, iq)); in parseSection() 526 pos = iq+1; in parseSection() 529 iq = rule.indexOf(QUOTE, pos+1); in parseSection() 537 for (iq=quoteStart; iq<quoteLimit; ++iq) { in parseSection() 538 parser.checkVariableRange(buf.charAt(iq), rule, start); in parseSection()
|
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | TransliteratorParser.java | 508 int iq = rule.indexOf(QUOTE, pos); in parseSection() local 509 if (iq == pos) { in parseSection() 521 if (iq < 0) { in parseSection() 524 buf.append(rule.substring(pos, iq)); in parseSection() 525 pos = iq+1; in parseSection() 528 iq = rule.indexOf(QUOTE, pos+1); in parseSection() 536 for (iq=quoteStart; iq<quoteLimit; ++iq) { in parseSection() 537 parser.checkVariableRange(buf.charAt(iq), rule, start); in parseSection()
|
/third_party/gn/src/gn/ |
D | path_output.h | 48 void set_inhibit_quoting(bool iq) { options_.inhibit_quoting = iq; } in set_inhibit_quoting() argument
|
/third_party/node/deps/v8/src/base/ |
D | ieee754.cc | 470 int32_t jz, jx, jv, jp, jk, carry, n, iq[20], i, j, k, m, q0, ih; in __kernel_rem_pio2() local 501 iq[i] = static_cast<int32_t>(z - two24 * fw); in __kernel_rem_pio2() 512 i = (iq[jz - 1] >> (24 - q0)); in __kernel_rem_pio2() 514 iq[jz - 1] -= i << (24 - q0); in __kernel_rem_pio2() 515 ih = iq[jz - 1] >> (23 - q0); in __kernel_rem_pio2() 517 ih = iq[jz - 1] >> 23; in __kernel_rem_pio2() 526 j = iq[i]; in __kernel_rem_pio2() 530 iq[i] = 0x1000000 - j; in __kernel_rem_pio2() 533 iq[i] = 0xFFFFFF - j; in __kernel_rem_pio2() 539 iq[jz - 1] &= 0x7FFFFF; in __kernel_rem_pio2() [all …]
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | rbt_pars.cpp | 460 int32_t iq = rule.indexOf(QUOTE, pos); in parseSection() local 461 if (iq == pos) { in parseSection() 473 if (iq < 0) { in parseSection() 477 rule.extractBetween(pos, iq, scratch); in parseSection() 479 pos = iq+1; in parseSection() 482 iq = rule.indexOf(QUOTE, pos+1); in parseSection() 490 for (iq=quoteStart; iq<quoteLimit; ++iq) { in parseSection() 491 if (!parser.checkVariableRange(buf.charAt(iq))) { in parseSection()
|
/third_party/icu/icu4c/source/i18n/ |
D | rbt_pars.cpp | 460 int32_t iq = rule.indexOf(QUOTE, pos); in parseSection() local 461 if (iq == pos) { in parseSection() 473 if (iq < 0) { in parseSection() 477 rule.extractBetween(pos, iq, scratch); in parseSection() 479 pos = iq+1; in parseSection() 482 iq = rule.indexOf(QUOTE, pos+1); in parseSection() 490 for (iq=quoteStart; iq<quoteLimit; ++iq) { in parseSection() 491 if (!parser.checkVariableRange(buf.charAt(iq))) { in parseSection()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | rbt_pars.cpp | 460 int32_t iq = rule.indexOf(QUOTE, pos); in parseSection() local 461 if (iq == pos) { in parseSection() 473 if (iq < 0) { in parseSection() 477 rule.extractBetween(pos, iq, scratch); in parseSection() 479 pos = iq+1; in parseSection() 482 iq = rule.indexOf(QUOTE, pos+1); in parseSection() 490 for (iq=quoteStart; iq<quoteLimit; ++iq) { in parseSection() 491 if (!parser.checkVariableRange(buf.charAt(iq))) { in parseSection()
|
/third_party/ltp/testcases/open_posix_testsuite/scripts/ |
D | print-prefix.sh | 3 if uname -a | grep -iq linux
|
/third_party/node/deps/uv/ |
D | MAINTAINERS.md | 30 * **Imran Iqbal** ([@imran-iq](https://github.com/imran-iq))
|
/third_party/libuv/ |
D | MAINTAINERS.md | 30 * **Imran Iqbal** ([@imran-iq](https://github.com/imran-iq))
|
/third_party/ffmpeg/libavdevice/ |
D | xcbgrab.c | 160 xcb_get_image_cookie_t iq; in xcbgrab_frame() local 167 iq = xcb_get_image(c->conn, XCB_IMAGE_FORMAT_Z_PIXMAP, drawable, in xcbgrab_frame() 170 img = xcb_get_image_reply(c->conn, iq, &e); in xcbgrab_frame() 268 xcb_shm_get_image_cookie_t iq; in xcbgrab_frame_shm() local 282 iq = xcb_shm_get_image(c->conn, drawable, in xcbgrab_frame_shm() 285 img = xcb_shm_get_image_reply(c->conn, iq, &e); in xcbgrab_frame_shm()
|
/third_party/python/Lib/test/ |
D | test_statistics.py | 2645 iq = NormalDist(100, 15) 2646 self.assertEqual(iq.inv_cdf(0.50), iq.mean) 2673 self.assertAlmostEqual(iq.cdf(iq.inv_cdf(p)), p) 2679 self.assertAlmostEqual(iq.cdf(iq.inv_cdf(p)), p) 2681 self.assertAlmostEqual(iq.cdf(iq.inv_cdf(p)), p) 2687 self.assertAlmostEqual(iq.inv_cdf(iq.cdf(x)), x, places=5) 2691 iq.inv_cdf(0.0) # p is zero 2693 iq.inv_cdf(-0.1) # p under zero 2695 iq.inv_cdf(1.0) # p is one 2697 iq.inv_cdf(1.1) # p over one [all …]
|
/third_party/ltp/testcases/network/nfs/nfs_stress/ |
D | nfs_lib.sh | 124 if grep -iq "Protocol not supported" mount.log; then
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | enc_neon.c | 826 const uint16x8_t iq = vld1q_u16(&mtx->iq_[offset]); in Quantize_NEON() local 834 const uint32x4_t m0 = vmull_u16(vget_low_u16(c), vget_low_u16(iq)); in Quantize_NEON() 835 const uint32x4_t m1 = vmull_u16(vget_high_u16(c), vget_high_u16(iq)); in Quantize_NEON()
|
/third_party/skia/third_party/externals/icu/source/data/region/ |
D | shi_Latn.txt | 78 GI{"adrar n ṭaṛiq"}
|
/third_party/icu/icu4c/source/data/region/ |
D | shi_Latn.txt | 78 GI{"adrar n ṭaṛiq"}
|
/third_party/typescript/tests/baselines/reference/ |
D | hugeDeclarationOutputGetsTruncatedWithError.types | 6 …" | "ig" | "ih" | "ii" | "ij" | "ik" | "il" | "im" | "in" | "io" | "ip" | "iq" | "ir" | "is" | "it… 9 …iq: "aa.iq"; ir: "aa.ir"; is: "aa.is"; it: "aa.it"; iu: "aa.iu"; iv: "aa.iv"; iw: "aa.iw"; ix: "aa… 10 …iq: "aa.iq"; ir: "aa.ir"; is: "aa.is"; it: "aa.it"; iu: "aa.iu"; iv: "aa.iv"; iw: "aa.iw"; ix: "aa…
|