/external/python/cpython3/Include/internal/ |
D | pycore_atomic.h | 47 atomic_uintptr_t _value; member 51 atomic_int _value; member 61 atomic_store_explicit(&((ATOMIC_VAL)->_value), NEW_VAL, ORDER) 64 atomic_load_explicit(&((ATOMIC_VAL)->_value), ORDER) 78 uintptr_t _value; 82 int _value; 95 __atomic_store_n(&((ATOMIC_VAL)->_value), NEW_VAL, ORDER)) 102 __atomic_load_n(&((ATOMIC_VAL)->_value), ORDER)) 116 uintptr_t _value; 120 int _value; [all …]
|
/external/lzma/Java/SevenZip/ |
D | CRC.java | 23 int _value = -1; field in CRC 27 _value = -1; in Init() 33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8); in Update() 40 _value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8); in Update() 45 _value = Table[(_value ^ b) & 0xFF] ^ (_value >>> 8); in UpdateByte() 50 return _value ^ (-1); in GetDigest()
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.h | 327 …inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encodin… in GetChar() argument 343 return GetEntity( p, _value, length, encoding ); in GetChar() 344 *_value = *p; in GetChar() 352 _value[i] = p[i]; in GetChar() 508 void SetValue(const char * _value) { value = _value;} in SetValue() argument 512 void SetValue( const std::string& _value ) { value = _value; } in SetValue() argument 526 TiXmlNode* FirstChild( const char * _value ) { in FirstChild() argument 529 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->FirstChild( _value )); in FirstChild() 535 TiXmlNode* LastChild( const char * _value ) { in LastChild() argument 536 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->LastChild( _value )); in LastChild() [all …]
|
/external/tinyxml/ |
D | tinyxml.h | 280 …inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encodin… in GetChar() argument 296 return GetEntity( p, _value, length, encoding ); in GetChar() 297 *_value = *p; in GetChar() 305 _value[i] = p[i]; in GetChar() 468 void SetValue(const char * _value) { value = _value;} in SetValue() argument 472 void SetValue( const std::string& _value ) in SetValue() argument 474 StringToBuffer buf( _value ); in SetValue() 497 …const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str (… in FirstChild() argument 498 …TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///… in FirstChild() argument 499 …const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ())… in LastChild() argument [all …]
|
D | tinyxml.cpp | 322 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const in FirstChild() 327 if ( strcmp( node->Value(), _value ) == 0 ) in FirstChild() 334 TiXmlNode* TiXmlNode::FirstChild( const char * _value ) in FirstChild() argument 339 if ( strcmp( node->Value(), _value ) == 0 ) in FirstChild() 346 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const in LastChild() 351 if ( strcmp( node->Value(), _value ) == 0 ) in LastChild() 357 TiXmlNode* TiXmlNode::LastChild( const char * _value ) in LastChild() argument 362 if ( strcmp( node->Value(), _value ) == 0 ) in LastChild() 420 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const in NextSibling() 425 if ( strcmp( node->Value(), _value ) == 0 ) in NextSibling() [all …]
|
/external/tensorflow/tensorflow/python/framework/ |
D | tensor_shape.py | 188 self._value = None 190 self._value = value 195 self._value = int(value.__index__()) 201 if self._value < 0: 202 raise ValueError("Dimension %d must be >= 0" % self._value) 205 return "Dimension(%s)" % repr(self._value) 208 value = self._value 217 if self._value is None or other.value is None: 219 return self._value == other.value 227 if self._value is None or other.value is None: [all …]
|
/external/python/pyasn1/pyasn1/type/ |
D | univ.py | 110 return self.clone(self._value & value) 113 return self.clone(value & self._value) 116 return self.clone(self._value | value) 119 return self.clone(value | self._value) 122 return self.clone(self._value ^ value) 125 return self.clone(value ^ self._value) 128 return self.clone(self._value << value) 131 return self.clone(self._value >> value) 134 return self.clone(self._value + value) 137 return self.clone(value + self._value) [all …]
|
D | base.py | 275 self._value = value 294 return self is other and True or self._value == other 297 return self._value != other 300 return self._value < other 303 return self._value <= other 306 return self._value > other 309 return self._value >= other 313 return self._value and True or False 316 return self._value and True or False 319 return hash(self._value) [all …]
|
D | char.py | 61 return self._value.encode(self.encoding) 67 "%s" % (self._value, self.encoding), exc 71 return unicode(self._value) 102 return str(self._value) 106 return self._value.encode(self.encoding) 111 "%s" % (self._value, self.encoding), exc 149 value = self.prettyOut(self._value) 151 if value is not self._value: 157 return reversed(self._value)
|
/external/lzma/CS/7zip/Common/ |
D | CRC.cs | 25 uint _value = 0xFFFFFFFF; field in SevenZip.CRC 27 public void Init() { _value = 0xFFFFFFFF; } in Init() 31 _value = Table[(((byte)(_value)) ^ b)] ^ (_value >> 8); in UpdateByte() 37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8); in Update() 40 public uint GetDigest() { return _value ^ 0xFFFFFFFF; } in GetDigest()
|
/external/mesa3d/include/android_stub/log/ |
D | log.h | 110 #define LOG_EVENT_INT(_tag, _value) \ argument 112 int intBuf = _value; \ 117 #define LOG_EVENT_LONG(_tag, _value) \ argument 119 long long longBuf = _value; \ 124 #define LOG_EVENT_FLOAT(_tag, _value) \ argument 126 float floatBuf = _value; \ 132 #define LOG_EVENT_STRING(_tag, _value) \ argument 133 (void)__android_log_bswrite(_tag, _value);
|
/external/selinux/libsepol/tests/ |
D | helpers.h | 38 int _value = (value); \ 39 CU_ASSERT(_value); \ 40 assert(_value); \ 51 const void *_value = (value); \ 52 CU_ASSERT_PTR_NOT_NULL(_value); \ 53 assert(_value != NULL); \
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/ |
D | Try.kt | 7 public class Try<out T> private constructor(private val _value: Any?) { constant in kotlinx.coroutines.Try 24 public val value: T get() = if (_value is Fail) throw _value.exception else _value as T 26 public val exception: Throwable? get() = (_value as? Fail)?.exception 28 override fun toString(): String = _value.toString()
|
/external/toolchain-utils/crosperf/ |
D | field.py | 17 self._value = default 23 self._value = self._Parse(value) 25 self._value = value 29 self._value += self._Parse(value) 36 return self._value 39 return str(self._value) 127 return ' '.join(self._value) 131 if not self._value: 132 self._value = v 134 self._value += v
|
/external/kotlinx.coroutines/integration/kotlinx-coroutines-jdk8/test/examples/ |
D | Try.kt | 10 public class Try<out T> private constructor(private val _value: Any?) { constant in kotlinx.coroutines.examples.Try 21 public val value: T get() = if (_value is Fail) throw _value.exception else _value as T 22 public val exception: Throwable? get() = (_value as? Fail)?.exception 23 override fun toString(): String = _value.toString()
|
/external/python/cpython3/Lib/asyncio/ |
D | locks.py | 258 self._value = False 269 extra = 'set' if self._value else 'unset' 276 return self._value 283 if not self._value: 284 self._value = True 294 self._value = False 303 if self._value: 455 self._value = value 481 return self._value == 0 492 while self._value <= 0: [all …]
|
/external/selinux/libsemanage/tests/ |
D | utilities.h | 50 int _value = (value); \ 51 CU_ASSERT(_value); \ 52 assert(_value); \ 63 const void *_value = (value); \ 64 CU_ASSERT_PTR_NOT_NULL(_value); \ 65 assert(_value != NULL); \
|
/external/clang/test/CodeGenObjC/ |
D | optimize-ivar-offset-load.m | 9 int _value; field 25 foo (sample->_value); 29 // CHECK: [[IVAR:%.*]] = load i64, i64* @"OBJC_IVAR_$_SampleClass._value", align 8 43 foo (sample->_value); 48 // CHECK: [[IVAR:%.*]] = load i64, i64* @"OBJC_IVAR_$_SampleClass._value", align 8, !invariant.load 58 foo (sample->_value); 63 // CHECK: [[IVAR:%.*]] = load i64, i64* @"OBJC_IVAR_$_SampleClass._value", align 8, !invariant.load
|
/external/grpc-grpc/src/objective-c/RxLibrary/ |
D | GRXImmediateSingleWriter.m | 22 id _value; 30 _value = value; 43 [writeable writeValue:_value]; 49 _value = nil; 68 // Since _value is available when creating the object, we can simply 70 _value = map(_value);
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/ |
D | Extension.java | 14 protected String _value; field in Extension 22 _value = value; in Extension() 30 return _value; in getValue() 34 return _key + LanguageTag.SEP + _value; in getID()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
D | Extension.java | 18 protected String _value; field in Extension 26 _value = value; in Extension() 34 return _value; in getValue() 38 return _key + LanguageTag.SEP + _value; in getID()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | Extension.java | 14 protected String _value; field in Extension 22 _value = value; in Extension() 30 return _value; in getValue() 34 return _key + LanguageTag.SEP + _value; in getID()
|
/external/protobuf/php/ext/google/protobuf/ |
D | type_check.c | 212 static bool convert_int64_to_##type(int64_t val, type##_t* type##_value) { \ 213 *type##_value = (type##_t)val; \ 217 static bool convert_double_to_##type(double val, type##_t* type##_value) { \ 218 *type##_value = (type##_t)zend_dval_to_lval(val); \ 223 type##_t* type##_value) { \ 229 return convert_double_to_##type(dval, type##_value); \ 232 return convert_int64_to_##type(lval, type##_value); \ 273 static bool convert_int64_to_##type(int64_t val, type* type##_value) { \ 274 *type##_value = (type)val; \ 278 static bool convert_double_to_##type(double val, type* type##_value) { \ [all …]
|
/external/arm-trusted-firmware/include/lib/extensions/ |
D | ras_arch.h | 80 #define ERR_STATUS_SET_FIELD(_status, _field, _value) \ argument 81 (_status) |= (((_value) & ERR_STATUS_ ##_field ##_MASK) << ERR_STATUS_ ##_field ##_SHIFT) 83 #define ERR_STATUS_WRITE_FIELD(_status, _field, _value) do { \ argument 84 ERR_STATUS_CLR_FIELD(_status, _field, _value); \ 85 ERR_STATUS_SET_FIELD(_status, _field, _value); \ 136 #define ERR_CTLR_SET_FIELD(_ctlr, _field, _value) \ argument 137 (_ctlr) |= (((_value) & ERR_CTLR_ ##_field ##_MASK) << ERR_CTLR_ ##_field ##_SHIFT)
|
/external/python/cryptography/src/cryptography/x509/ |
D | general_name.py | 87 self._value = value 94 instance._value = value 148 self._value = value 155 instance._value = value 193 self._value = value 200 instance._value = value 248 self._value = value 274 self._value = value 312 self._value = value 341 self._value = value
|