Home
last modified time | relevance | path

Searched refs:RawValue (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
D__init__.py234 def RawValue(typecode_or_type, *args): function
238 from multiprocessing.sharedctypes import RawValue
239 return RawValue(typecode_or_type, *args)
Dsharedctypes.py71 def RawValue(typecode_or_type, *args): function
104 obj = RawValue(typecode_or_type, *args)
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DAPSIntType.h70 llvm::APSInt getValue(uint64_t RawValue) const LLVM_READONLY { in getValue() argument
71 return (llvm::APSInt(BitWidth, IsUnsigned) = RawValue); in getValue()
/external/protobuf/docs/swift/
DDesignDoc.md366 public typealias RawValue = Int32
372 public init(rawValue: RawValue) {
379 public var rawValue: RawValue {
/external/v8/src/arm64/
Dsimulator-arm64.h83 uint32_t RawValue() const {
Dsimulator-arm64.cc3248 case NZCV: set_xreg(instr->Rt(), nzcv().RawValue()); break; in VisitSystem()
3249 case FPCR: set_xreg(instr->Rt(), fpcr().RawValue()); break; in VisitSystem()
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1212 .. function:: RawValue(typecode_or_type, *args)
1246 The same as :func:`RawValue` except that depending on the value of *lock* a
1285 c_double(2.4) RawValue(c_double, 2.4) RawValue('d', 2.4)
1286 MyStruct(4, 6) RawValue(MyStruct, 4, 6)
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py926 values = [self.RawValue(code, value)
967 arr5 = self.RawValue('i', 5)
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86BaseImpl.h8465 typename T::PrimitiveIntType RawValue;
8466 memcpy(&RawValue, &Value, sizeof(Value));
8469 snprintf(buf, llvm::array_lengthof(buf), T::PrintfString, RawValue);
/external/vixl/src/aarch64/
Dsimulator-aarch64.h671 VIXL_DEPRECATED("GetRawValue", uint32_t RawValue() const) {