HomeSort by relevance Sort by last modified time
    Searched refs:iq (Results 1 - 25 of 31) sorted by null

1 2

  /device/google/contexthub/lib/libm/
kf_rem_pio2.c 62 __int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
85 /* distill q[] into iq[] reversingly */
88 iq[i] = (__int32_t)(z-two8*fw);
98 if(q0>0) { /* need iq[jz-1] to determine n */
99 i = (iq[jz-1]>>(8-q0)); n += i;
100 iq[jz-1] -= i<<(8-q0);
101 ih = iq[jz-1]>>(7-q0);
103 else if(q0==0) ih = iq[jz-1]>>8;
109 j = iq[i];
112 carry = 1; iq[i] = 0x100- j
    [all...]
  /external/fdlibm/
k_rem_pio2.c 112 * iq[] integer array by breaking up q[] in 24-bits chunk.
170 int jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
193 /* distill q[] into iq[] reversingly */
196 iq[i] = (int)(z-two24*fw);
206 if(q0>0) { /* need iq[jz-1] to determine n */
207 i = (iq[jz-1]>>(24-q0)); n += i;
208 iq[jz-1] -= i<<(24-q0);
209 ih = iq[jz-1]>>(23-q0);
211 else if(q0==0) ih = iq[jz-1]>>23;
217 j = iq[i]
    [all...]
  /external/v8/src/third_party/fdlibm/
fdlibm.cc 88 int32_t iq[20]; local
92 iq[i] = static_cast<int32_t>(z - two24 * fw);
102 int32_t i = (iq[jz - 1] >> (24 - q0));
104 iq[jz - 1] -= i << (24 - q0);
105 ih = iq[jz - 1] >> (23 - q0);
107 ih = iq[jz - 1] >> 23;
116 int32_t j = iq[i];
120 iq[i] = 0x1000000 - j;
123 iq[i] = 0xffffff - j;
127 iq[jz - 1] &= 0x7fffff
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
orphan.d 5 #xfail: iq*-*-* mn10200-*-* moxie-*-* msp*-*-* mt-*-* pj*-*-*
pr349.d 6 #xfail: iq*-*-* mn10200-*-* moxie-*-* msp*-*-* mt-*-* pj*-*-*
orphan-region.d 5 #xfail: iq*-*-* mn10200-*-* moxie-*-* msp*-*-* mt-*-* pj*-*-*
warn2.d 9 #xfail: iq*-*-* mn10200-*-* moxie-*-* msp*-*-* mt-*-* pj*-*-*
  /external/webrtc/webrtc/libjingle/xmpp/
xmpplogintask.cc 256 XmlElement iq(QN_IQ);
257 iq.AddAttr(QN_TYPE, "set");
260 iq.AddAttr(QN_ID, iqId_);
261 iq.AddElement(new XmlElement(QN_BIND_BIND, true));
264 iq.AddElement(new XmlElement(QN_BIND_RESOURCE), 1);
265 iq.AddText(pctx_->requested_resource_, 2);
267 pctx_->InternalSendStanza(&iq);
290 XmlElement iq(QN_IQ);
291 iq.AddAttr(QN_TYPE, "set");
294 iq.AddAttr(QN_ID, iqId_)
    [all...]
  /frameworks/base/native/android/
input.cpp 275 InputQueue* iq = static_cast<InputQueue*>(queue); local
277 iq->attachLooper(l, ident, callback, data);
281 InputQueue* iq = static_cast<InputQueue*>(queue); local
282 iq->detachLooper();
286 InputQueue* iq = static_cast<InputQueue*>(queue); local
287 return iq->hasEvents();
291 InputQueue* iq = static_cast<InputQueue*>(queue); local
293 int32_t res = iq->getEvent(&event);
299 InputQueue* iq = static_cast<InputQueue*>(queue); local
301 return iq->preDispatchEvent(e) ? 1 : 0
305 InputQueue* iq = static_cast<InputQueue*>(queue); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/
bs.py 71 iq = self.sd.get_obj('input_queue')
72 if iq:
75 m = iq.read()
78 iq.delete_message(m)
79 m = iq.read()
129 iq = self.sd.get_obj('input_queue')
130 if iq:
131 print('The input_queue (%s) contains approximately %s messages' % (iq.id, iq.count()))
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_rem_pio2.c 114 * iq[] integer array by breaking up q[] in 24-bits chunk.
296 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
319 /* distill q[] into iq[] reversingly */
322 iq[i] = (int32_t)(z-two24*fw);
332 if(q0>0) { /* need iq[jz-1] to determine n */
333 i = (iq[jz-1]>>(24-q0)); n += i;
334 iq[jz-1] -= i<<(24-q0);
335 ih = iq[jz-1]>>(23-q0);
337 else if(q0==0) ih = iq[jz-1]>>23;
343 j = iq[i]
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliteratorParser.java 502 int iq = rule.indexOf(QUOTE, pos); local
503 if (iq == pos) {
515 if (iq < 0) {
518 buf.append(rule.substring(pos, iq));
519 pos = iq+1;
522 iq = rule.indexOf(QUOTE, pos+1);
530 for (iq=quoteStart; iq<quoteLimit; ++iq) {
531 parser.checkVariableRange(buf.charAt(iq), rule, start)
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorParser.java 501 int iq = rule.indexOf(QUOTE, pos); local
502 if (iq == pos) {
514 if (iq < 0) {
517 buf.append(rule.substring(pos, iq));
518 pos = iq+1;
521 iq = rule.indexOf(QUOTE, pos+1);
529 for (iq=quoteStart; iq<quoteLimit; ++iq) {
530 parser.checkVariableRange(buf.charAt(iq), rule, start)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerRDF.java 518 for (Iterator iq = node.iterateQualifier(); iq.hasNext();)
520 XMPNode qualifier = (XMPNode) iq.next();
757 for (Iterator iq = node.iterateQualifier(); iq.hasNext();)
759 XMPNode qualifier = (XMPNode) iq.next();
    [all...]
  /external/icu/icu4c/source/i18n/
rbt_pars.cpp 458 int32_t iq = rule.indexOf(QUOTE, pos); local
459 if (iq == pos) {
471 if (iq < 0) {
475 rule.extractBetween(pos, iq, scratch);
477 pos = iq+1;
480 iq = rule.indexOf(QUOTE, pos+1);
488 for (iq=quoteStart; iq<quoteLimit; ++iq) {
489 if (!parser.checkVariableRange(buf.charAt(iq))) {
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelLowering.cpp 544 // int iq = (int)fq;
545 SDValue iq = DAG.getNode(ISD::FP_TO_SINT, DL, INTTY, fq); local
563 // dst = iq + jq;
564 iq = DAG.getSExtOrTrunc(iq, DL, OVT);
565 iq = DAG.getNode(ISD::ADD, DL, OVT, iq, jq);
566 return iq;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/
testit_android 325 if ! $(echo $ERR | grep -iq "Text file busy"); then
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
testit_android 338 if ! $(echo $ERR | grep -iq "Text file busy"); then
  /external/webp/src/dsp/
enc_neon.c 824 const uint16x8_t iq = vld1q_u16(&mtx->iq_[offset]); local
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 1612 SDValue iq = DAG.getNode(ToInt, DL, IntVT, fq); local
    [all...]
  /external/v8/test/mjsunit/asm/sqlite3/
sqlite-pointer-masking.js     [all...]
sqlite-safe-heap.js     [all...]
  /external/libavc/common/arm/
ih264_iquant_itrans_recon_a9.s 336 vmov.16 d0[0], r9 @ Restore dc value since its chroma iq-it
    [all...]
  /external/webrtc/talk/media/testdata/
h264-svc-99-640x360.rtpdump 562 ???l???U0???0??ap??PpD?ws[?o9a+n_M?mI?. ?}?zV[?‰?????s??|?p?6?5 ??q???E?2y??u?q???^????+?M???*MO?:??&??!????MO???L??j??,??S -nb`??>?f??f??H&??H?8hS??n: g?~??K??U<@?v62?????Ov????Qz???2?'`???:[?9?WYH???? RQ??R???1?!p??-????%?!???m?*??1?&???zK???$?_Y@t}????E?U?}?oK ?,?\A??uh8?%?cx_# Í?????~b?6???T^???????k??$`? ?J)0fV?R????aS?? ?"Ej?e????iQ???G??[??`???????]?Vm (…)
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 998 milliseconds

1 2