HomeSort by relevance Sort by last modified time
    Searched full:svalue (Results 26 - 50 of 76) sorted by null

12 3 4

  /external/python/cpython2/Lib/idlelib/
Debugger.py 503 svalue = self.repr.repr(value) # repr(value)
507 svalue = svalue[1:-1]
511 l.insert(0, svalue)
  /external/python/cpython3/Lib/idlelib/
debugger.py 518 svalue = self.repr.repr(value) # repr(value)
522 svalue = svalue[1:-1]
526 l.insert(0, svalue)
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 251 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
254 const Value *SValue;
275 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
279 const Value *SValue;
  /external/pdfium/fpdfsdk/pwl/
cpwl_appstream.cpp     [all...]
  /external/icu/icu4c/source/i18n/
digitlst.cpp 611 int64_t svalue = (int64_t)value;
617 if (( decNumberIsNegative(fDecNumber) && svalue>0) ||
618 (!decNumberIsNegative(fDecNumber) && svalue<0)) {
619 svalue = 0;
623 return svalue;
    [all...]
  /external/kernel-headers/original/uapi/linux/dvb/
frontend.h 764 * %svalue
791 * u.st.stat.svalue[0] = global statistics;
795 * u.st.stat.svalue[2] = layer B statistics;
797 * u.st.stat.svalue[3] = layer C statistics;
805 __s64 svalue; /* for 0.001 dB measures */ member in union:dtv_stats::__anon22788
  /external/skia/src/sksl/
SkSLCPPCodeGenerator.cpp 577 this->writef(" const SkRect %sValue = _outer.%s();\n"
578 " %s.set4fv(%sVar, 1, (float*) &%sValue);\n",
582 this->writef(" float %sValue[16];\n"
583 " _outer.%s().asColMajorf(%sValue);\n"
584 " %s.setMatrix4f(%sVar, %sValue);\n",
    [all...]
  /external/skqp/src/sksl/
SkSLCPPCodeGenerator.cpp 577 this->writef(" const SkRect %sValue = _outer.%s();\n"
578 " %s.set4fv(%sVar, 1, (float*) &%sValue);\n",
582 this->writef(" float %sValue[16];\n"
583 " _outer.%s().asColMajorf(%sValue);\n"
584 " %s.setMatrix4f(%sVar, %sValue);\n",
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
EffectBundleTest.java 557 short sValue = (short) value;
558 converter.putShort(sValue);
  /bionic/libc/kernel/uapi/linux/dvb/
frontend.h 322 __s64 svalue; member in union:dtv_stats::__anon582
  /external/syslinux/gpxe/src/core/
settings.c 703 long svalue; local
710 len = fetch_int_setting ( settings, setting, &svalue );
716 *value = ( svalue & ( -1UL >> ( 8 * ( sizeof ( long ) - len ) ) ) );
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lobject.c 229 return svalue(L->top - 1);
ldebug.c 314 *name = svalue(kvalue); /* it is its own name */
428 *name = svalue(&p->k[b]);
lgc.c 439 ((weakkey = strchr(svalue(mode), 'k')),
440 (weakvalue = strchr(svalue(mode), 'v')),
830 ? svalue(L->top - 1)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 264 : First(std::move(F)), Last(std::move(L)), SValue(SV), HeaderBB(H),
268 const Value *SValue;
290 : First(std::move(F)), Range(std::move(R)), SValue(SV), Reg(Rg),
295 const Value *SValue;
    [all...]
  /external/syslinux/com32/lua/src/
lobject.c 229 return svalue(L->top - 1);
ldebug.c 314 *name = svalue(kvalue); /* it is its own name */
428 *name = svalue(&p->k[b]);
lgc.c 439 ((weakkey = strchr(svalue(mode), 'k')),
440 (weakvalue = strchr(svalue(mode), 'v')),
830 ? svalue(L->top - 1)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cmdtree.h 312 short sValue;
  /external/pdfium/fpdfsdk/formfiller/
cffl_interactiveformfiller.cpp 688 WideString sValue = pInterForm->OnFormat(pWidget->GetFormField(), bFormatted);
693 pInterForm->ResetFieldAppearance(pWidget->GetFormField(), &sValue, true);
  /external/pdfium/fxjs/
cjs_global.cpp 477 ByteString sValue = ByteString::FromUnicode(pRuntime->ToWideString(v));
481 pObjElement->sData = sValue;
  /external/v8/src/arm/
constants-arm.h 584 inline int SValue() const { return Bit(20); }
650 inline bool HasS() const { return SValue() == 1; }
  /external/webrtc/webrtc/base/
httpbase.cc 824 std::string sname(name, nlen), svalue(value, vlen);
825 data_->addHeader(sname, svalue);
  /toolchain/binutils/binutils-2.27/binutils/
dwarf.c 978 dwarf_signed_vma svalue; local
1000 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 1, end);
1001 printf ("DW_OP_const1s: %ld", (long) svalue);
1008 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 2, end);
1009 printf ("DW_OP_const2s: %ld", (long) svalue);
1016 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 4, end);
1017 printf ("DW_OP_const4s: %ld", (long) svalue);
1026 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 4, end);
1027 printf ("DW_OP_const8s: %ld ", (long) svalue);
1028 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 4, end)
    [all...]
  /external/valgrind/perf/
tinycc.c     [all...]

Completed in 998 milliseconds

12 3 4