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

1 2 3 4 5 6 7 8 91011>>

  /external/lzma/Java/SevenZip/
CRC.java 23 int _value = -1; field in class:CRC
27 _value = -1;
33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8);
40 _value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8);
45 _value = Table[(_value ^ b) & 0xFF] ^ (_value >>> 8);
    [all...]
  /system/security/keystore/
keystore_attestation_id.h 28 StatusOr(const status_t error) : _status(error), _value() {}
29 StatusOr(const T& value) : _status(NO_ERROR), _value(value) {}
30 StatusOr(T&& value) : _status(NO_ERROR), _value(value) {}
32 operator const T&() const { return _value; }
33 operator T&() { return _value; }
34 operator T &&() && { return std::move(_value); }
40 const T& value() const & { return _value; }
41 T& value() & { return _value; }
42 T&& value() && { return std::move(_value); }
46 T _value; member in class:android::security::StatusOr
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
Extension.java 18 protected String _value; field in class:Extension
26 _value = value;
34 return _value;
38 return _key + LanguageTag.SEP + _value;
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
Extension.java 14 protected String _value; field in class:Extension
22 _value = value;
30 return _value;
34 return _key + LanguageTag.SEP + _value;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
Extension.java 14 protected String _value; field in class:Extension
22 _value = value;
30 return _value;
34 return _key + LanguageTag.SEP + _value;
  /external/lzma/CS/7zip/Common/
CRC.cs 25 uint _value = 0xFFFFFFFF; field in class:SevenZip.CRC
27 public void Init() { _value = 0xFFFFFFFF; }
31 _value = Table[(((byte)(_value)) ^ b)] ^ (_value >> 8);
37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8);
40 public uint GetDigest() { return _value ^ 0xFFFFFFFF; }
  /external/xmlrpcpp/src/
XmlRpcValue.cpp 57 case TypeString: delete _value.asString; break;
58 case TypeDateTime: delete _value.asTime; break;
59 case TypeBase64: delete _value.asBinary; break;
60 case TypeArray: delete _value.asArray; break;
61 case TypeStruct: delete _value.asStruct; break;
65 _value.asBinary = 0;
76 case TypeString: _value.asString = new std::string(); break;
77 case TypeDateTime: _value.asTime = new struct tm(); break;
78 case TypeBase64: _value.asBinary = new BinaryData(); break;
79 case TypeArray: _value.asArray = new ValueArray(); break
    [all...]
XmlRpcValue.h 46 XmlRpcValue() : _type(TypeInvalid) { _value.asBinary = 0; }
47 XmlRpcValue(bool value) : _type(TypeBoolean) { _value.asBool = value; }
48 XmlRpcValue(int value) : _type(TypeInt) { _value.asInt = value; }
49 XmlRpcValue(double value) : _type(TypeDouble) { _value.asDouble = value; }
52 { _value.asString = new std::string(value); }
55 { _value.asString = new std::string(value); }
58 { _value.asTime = new struct tm(*value); }
63 _value.asBinary = new BinaryData((char*)value, ((char*)value)+nBytes);
88 operator bool&() { assertTypeOrInvalid(TypeBoolean); return _value.asBool; }
89 operator int&() { assertTypeOrInvalid(TypeInt); return _value.asInt;
185 } _value; member in class:XmlRpc::XmlRpcValue
    [all...]
  /external/webrtc/talk/app/webrtc/objc/
RTCPair.m 33 @synthesize value = _value;
38 _value = [value copy];
44 return [NSString stringWithFormat:@"%@: %@", _key, _value];
  /external/python/cpython3/Include/
pyatomic.h 33 atomic_uintptr_t _value; member in struct:_Py_atomic_address
37 atomic_int _value; member in struct:_Py_atomic_int
47 atomic_store_explicit(&(ATOMIC_VAL)->_value, NEW_VAL, ORDER)
50 atomic_load_explicit(&(ATOMIC_VAL)->_value, ORDER)
64 uintptr_t _value; member in struct:_Py_atomic_address
68 int _value; member in struct:_Py_atomic_int
81 __atomic_store_n(&(ATOMIC_VAL)->_value, NEW_VAL, ORDER))
88 __atomic_load_n(&(ATOMIC_VAL)->_value, ORDER))
101 uintptr_t _value; member in struct:_Py_atomic_address
105 int _value; member in struct:_Py_atomic_int
    [all...]
  /external/libxcam/modules/ocl/
cl_argument.h 68 , _value (value)
70 _arg_adress = (void *) &_value;
75 DataType _value; member in class:XCam::CLArgumentT
87 memcpy (&_value[0], value, sizeof (DataType) * count);
88 _arg_adress = (void *) &_value;
93 DataType _value[count]; member in class:XCam::CLArgumentTArray
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 327 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding )
343 return GetEntity( p, _value, length, encoding );
344 *_value = *p;
349 //strncpy( _value, p, *length ); // lots of compilers don't like this function (unsafe),
352 _value[i] = p[i];
508 void SetValue(const char * _value) { value = _value;}
512 void SetValue( const std::string& _value ) { value = _value; }
526 TiXmlNode* FirstChild( const char * _value ) {
    [all...]
  /system/core/liblog/include/log/
log.h 127 #define LOG_EVENT_INT(_tag, _value) \
129 int intBuf = _value; \
134 #define LOG_EVENT_LONG(_tag, _value) \
136 long long longBuf = _value; \
141 #define LOG_EVENT_FLOAT(_tag, _value) \
143 float floatBuf = _value; \
149 #define LOG_EVENT_STRING(_tag, _value) \
150 (void)__android_log_bswrite(_tag, _value);
  /external/tinyxml/
tinyxml.h 280 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding )
296 return GetEntity( p, _value, length, encoding );
297 *_value = *p;
302 //strncpy( _value, p, *length ); // lots of compilers don't like this function (unsafe),
305 _value[i] = p[i];
468 void SetValue(const char * _value) { value = _value;}
472 void SetValue( const std::string& _value )
474 StringToBuffer buf( _value );
497 const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str ()); } ///< STL std::string form
    [all...]
  /external/syslinux/gpxe/src/drivers/infiniband/
mlx_bitops.h 86 #define MLX_ASSEMBLE_1( _structure_st, _index, _field, _value ) \
87 ( (_value) << MLX_DWORD_BIT_OFFSET ( _structure_st, _index, _field ) )
89 #define MLX_ASSEMBLE_2( _structure_st, _index, _field, _value, ... ) \
90 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \
93 #define MLX_ASSEMBLE_3( _structure_st, _index, _field, _value, ... ) \
94 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \
97 #define MLX_ASSEMBLE_4( _structure_st, _index, _field, _value, ... ) \
98 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \
101 #define MLX_ASSEMBLE_5( _structure_st, _index, _field, _value, ... ) \
102 ( MLX_ASSEMBLE_1 ( _structure_st, _index, _field, _value ) | \
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
bitops.h 101 #define BIT_ASSEMBLE_1( _ptr, _index, _field, _value ) \
102 ( ( ( uint64_t) (_value) ) << \
105 #define BIT_ASSEMBLE_2( _ptr, _index, _field, _value, ... ) \
106 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
109 #define BIT_ASSEMBLE_3( _ptr, _index, _field, _value, ... ) \
110 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
113 #define BIT_ASSEMBLE_4( _ptr, _index, _field, _value, ... ) \
114 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
117 #define BIT_ASSEMBLE_5( _ptr, _index, _field, _value, ... ) \
118 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
    [all...]
  /external/toolchain-utils/crosperf/
field.py 13 self._value = default
19 self._value = self._Parse(value)
21 self._value = value
25 self._value += self._Parse(value)
32 return self._value
35 return str(self._value)
123 return ' '.join(self._value)
127 if not self._value:
128 self._value = v
130 self._value +=
    [all...]
  /external/tensorflow/tensorflow/python/framework/
tensor_shape.py 32 self._value = None
34 self._value = int(value)
36 self._value != value):
38 if self._value < 0:
39 raise ValueError("Dimension %d must be >= 0" % self._value)
42 return "Dimension(%s)" % repr(self._value)
45 value = self._value
54 if self._value is None or other.value is None:
56 return self._value == other.value
64 if self._value is None or other.value is None
    [all...]
  /external/syslinux/gpxe/src/drivers/net/phantom/
nx_bitops.h 84 #define NX_ASSEMBLE_1( _ptr, _index, _field, _value ) \
85 ( ( ( uint64_t) (_value) ) << \
88 #define NX_ASSEMBLE_2( _ptr, _index, _field, _value, ... ) \
89 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
92 #define NX_ASSEMBLE_3( _ptr, _index, _field, _value, ... ) \
93 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
96 #define NX_ASSEMBLE_4( _ptr, _index, _field, _value, ... ) \
97 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
100 #define NX_ASSEMBLE_5( _ptr, _index, _field, _value, ... ) \
101 ( NX_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
token.py 70 for _name, _value in globals().items():
71 if type(_value) is type(0):
72 tok_name[_value] = _name
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
symbol.py 101 for _name, _value in globals().items():
102 if type(_value) is type(0):
103 sym_name[_value] = _name
  /external/clang/test/Analysis/
cfref_PR2519.c 28 // This test case was reported in PR2519 as a false positive (_value was
35 CFNumberRef _value = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &pid); local
36 CFDictionaryRef userInfo = CFDictionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
37 CFRelease(_value); // no-warning
  /external/python/cpython2/Lib/lib2to3/pgen2/
token.py 71 for _name, _value in globals().items():
72 if type(_value) is type(0):
73 tok_name[_value] = _name
  /external/python/cpython2/Lib/
symbol.py 101 for _name, _value in globals().items():
102 if type(_value) is type(0):
103 sym_name[_value] = _name
  /external/python/cpython3/Lib/lib2to3/pgen2/
token.py 73 for _name, _value in list(globals().items()):
74 if type(_value) is type(0):
75 tok_name[_value] = _name

Completed in 845 milliseconds

1 2 3 4 5 6 7 8 91011>>