Searched defs:_value (Results 1 - 25 of 28) sorted by relevance

12

/external/webrtc/src/system_wrappers/interface/
H A Datomic32.h54 // Checks if |_value| is 32bit aligned.
56 return (reinterpret_cast<ptrdiff_t>(&_value) & 3) == 0;
61 WebRtc_Word32 _value; member in class:webrtc::Atomic32
/external/lzma/CS/7zip/Common/
H A DCRC.cs25 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/lzma/Java/SevenZip/
H A DCRC.java23 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
[all...]
/external/clang/test/Analysis/
H A Dcfref_PR2519.c28 // 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/lldb/include/lldb/Core/
H A DVMRange.h132 _value(value)
137 return range.Contains(_value);
139 lldb::addr_t _value; member in class:lldb_private::VMRange::ValueInRangeUnaryPredicate
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs68 private object _value; field in class:Antlr.Runtime.Collections.HashList.HashListEnumerator
76 _value = null;
87 _value = null;
114 return _value;
126 return new DictionaryEntry(_key, _value);
142 _value = null;
157 return _value;
159 return new DictionaryEntry(_key, _value);
173 _value = _hashList[_key];
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashTraits.h256 KeyValuePair(const KeyTypeArg& _key, const ValueTypeArg& _value) argument
258 , value(_value)
/external/chromium_org/third_party/opus/src/celt/
H A Dentenc.c60 static int ec_write_byte(ec_enc *_this,unsigned _value){ argument
62 _this->buf[_this->offs++]=(unsigned char)_value;
66 static int ec_write_byte_at_end(ec_enc *_this,unsigned _value){ argument
68 _this->buf[_this->storage-++(_this->end_offs)]=(unsigned char)_value;
/external/clang/test/CodeGenCXX/
H A D2010-07-23-DeclLoc.cpp48 T _value; member in class:TRangeValue
50 TRangeValue(typename SIZE::ptr_t location, typename SIZE::size_t length, T value) : TRange<SIZE>(location, length), _value(value) {};
/external/jmdns/src/javax/jmdns/impl/
H A DDNSCache.java153 private List<? extends DNSEntry> _value; field in class:DNSCache._CacheEntry
164 _value = value;
174 _value = ((_CacheEntry) entry).getValue();
191 return _value;
199 List<? extends DNSEntry> oldValue = _value;
200 _value = value;
241 if ((_value != null) && (!_value.isEmpty())) {
242 for (DNSEntry entry : _value) {
H A DJmDNSImpl.java123 private final String _value; field in class:JmDNSImpl.ServiceTypeEntry.SubTypeEntry
127 _value = (subtype != null ? subtype : "");
128 _key = _value.toLowerCase();
144 return _value;
177 return (_key == null ? 0 : _key.hashCode()) ^ (_value == null ? 0 : _value.hashCode());
195 return _key + "=" + _value;
/external/libopus/celt/
H A Dentenc.c60 static int ec_write_byte(ec_enc *_this,unsigned _value){ argument
62 _this->buf[_this->offs++]=(unsigned char)_value;
66 static int ec_write_byte_at_end(ec_enc *_this,unsigned _value){ argument
68 _this->buf[_this->storage-++(_this->end_offs)]=(unsigned char)_value;
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp361 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const
366 if ( strcmp( node->Value(), _value ) == 0 )
373 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const
378 if ( strcmp( node->Value(), _value ) == 0 )
413 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const
418 if ( strcmp( node->Value(), _value ) == 0 )
425 const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const
430 if ( strcmp( node->Value(), _value ) == 0 )
467 const TiXmlElement* TiXmlNode::FirstChildElement( const char * _value ) const
471 for ( node = FirstChild( _value );
525 TiXmlElement(const char * _value) argument
[all...]
H A Dtinyxml.h327 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding ) argument
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;} argument
512 void SetValue( const std::string& _value ) { value = _value; }
526 TiXmlNode* FirstChild( const char * _value ) {
569 IterateChildren( const char * _value, const TiXmlNode* previous ) argument
574 IterateChildren( const std::string& _value, const TiXmlNode* previous ) const argument
575 IterateChildren( const std::string& _value, const TiXmlNode* previous ) argument
627 NextSibling( const std::string& _value) argument
660 NextSiblingElement( const std::string& _value) argument
1679 Child( const std::string& _value, int index ) const argument
1680 ChildElement( const std::string& _value, int index ) const argument
[all...]
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp361 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const
366 if ( strcmp( node->Value(), _value ) == 0 )
373 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const
378 if ( strcmp( node->Value(), _value ) == 0 )
413 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const
418 if ( strcmp( node->Value(), _value ) == 0 )
425 const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const
430 if ( strcmp( node->Value(), _value ) == 0 )
467 const TiXmlElement* TiXmlNode::FirstChildElement( const char * _value ) const
471 for ( node = FirstChild( _value );
525 TiXmlElement(const char * _value) argument
[all...]
H A Dtinyxml.h327 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding ) argument
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;} argument
512 void SetValue( const std::string& _value ) { value = _value; }
526 TiXmlNode* FirstChild( const char * _value ) {
569 IterateChildren( const char * _value, const TiXmlNode* previous ) argument
574 IterateChildren( const std::string& _value, const TiXmlNode* previous ) const argument
575 IterateChildren( const std::string& _value, const TiXmlNode* previous ) argument
627 NextSibling( const std::string& _value) argument
660 NextSiblingElement( const std::string& _value) argument
1679 Child( const std::string& _value, int index ) const argument
1680 ChildElement( const std::string& _value, int index ) const argument
[all...]
/external/tinyxml/
H A Dtinyxml.cpp322 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const
327 if ( strcmp( node->Value(), _value ) == 0 )
334 TiXmlNode* TiXmlNode::FirstChild( const char * _value )
339 if ( strcmp( node->Value(), _value ) == 0 )
346 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const
351 if ( strcmp( node->Value(), _value ) == 0 )
357 TiXmlNode* TiXmlNode::LastChild( const char * _value )
362 if ( strcmp( node->Value(), _value ) == 0 )
420 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const
425 if ( strcmp( node->Value(), _value )
611 TiXmlElement(const char * _value) argument
[all...]
H A Dtinyxml.h280 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding ) argument
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;} argument
472 void SetValue( const std::string& _value )
474 StringToBuffer buf( _value );
497 const TiXmlNode* FirstChild( const std::string& _value ) cons
527 IterateChildren( const std::string& _value, const TiXmlNode* previous ) const argument
528 IterateChildren( const std::string& _value, TiXmlNode* previous ) argument
578 NextSibling( const std::string& _value) argument
605 NextSiblingElement( const std::string& _value) argument
1489 Child( const std::string& _value, int index ) const argument
1490 ChildElement( const std::string& _value, int index ) const argument
[all...]
/external/llvm/include/llvm/Support/
H A DYAMLTraits.h933 ScalarHNode(Node *n, StringRef s) : HNode(n), _value(s) { }
935 StringRef value() const { return _value; }
942 StringRef _value; member in class:llvm::yaml::Input::ScalarHNode
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp1695 IntWrapper(int _value) : value(_value) {} argument
1704 FloatWrapper(float _value) : value(_value) {} argument
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_format_autogen.h4460 void Init(GLclampf _value, GLboolean _invert) { argument
4462 value = _value;
4466 void* Set(void* cmd, GLclampf _value, GLboolean _invert) { argument
4467 static_cast<ValueType*>(cmd)->Init(_value, _invert);
5948 void Init(GLint _location, GLsizei _count, const GLfloat* _value) { argument
5952 memcpy(ImmediateDataAddress(this), _value, ComputeDataSize(_count)); local
5955 void* Set(void* cmd, GLint _location, GLsizei _count, const GLfloat* _value) { argument
5956 static_cast<ValueType*>(cmd)->Init(_location, _count, _value);
5995 void Init(GLint _location, GLsizei _count, const GLfloat* _value) { argument
5999 memcpy(ImmediateDataAddress(this), _value, ComputeDataSiz local
6002 Set(void* cmd, GLint _location, GLsizei _count, const GLfloat* _value) argument
6042 Init(GLint _location, GLsizei _count, const GLfloat* _value) argument
6046 memcpy(ImmediateDataAddress(this), _value, ComputeDataSize(_count)); local
6049 Set(void* cmd, GLint _location, GLsizei _count, const GLfloat* _value) argument
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djdepend-2.9.jar ... byte _tag private int _nameIndex private int _typeIndex private Object _value private final jdepend.framework.ClassFileParser this$0 ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 713 milliseconds

12