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

1 2 3 4 5 6

  /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...]
  /external/webrtc/src/system_wrappers/source/
atomic32_mac.cc 21 Atomic32::Atomic32(WebRtc_Word32 initialValue) : _value(initialValue)
32 return OSAtomicIncrement32Barrier(&_value);
37 return OSAtomicDecrement32Barrier(&_value);
42 return OSAtomicAdd32Barrier(value, &_value);
47 return OSAtomicAdd32Barrier(-value, &_value);
53 return OSAtomicCompareAndSwap32Barrier(compareValue, newValue, &_value);
58 return _value;
atomic32_win.cc 21 Atomic32::Atomic32(WebRtc_Word32 initialValue) : _value(initialValue)
25 COMPILE_ASSERT(sizeof(_value) == sizeof(LONG));
36 reinterpret_cast<volatile LONG*>(&_value)));
42 reinterpret_cast<volatile LONG*>(&_value)));
47 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&_value),
53 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&_value),
61 reinterpret_cast<volatile LONG*>(&_value),
70 return _value;
atomic32_posix.cc 21 Atomic32::Atomic32(WebRtc_Word32 initialValue) : _value(initialValue)
32 return __sync_fetch_and_add(&_value, 1) + 1;
37 return __sync_fetch_and_sub(&_value, 1) - 1;
42 WebRtc_Word32 returnValue = __sync_fetch_and_add(&_value, value);
49 WebRtc_Word32 returnValue = __sync_fetch_and_sub(&_value, value);
57 return __sync_bool_compare_and_swap(&_value, compareValue, newValue);
62 return _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/chromium_org/chrome/common/extensions/docs/server2/
future.py 13 self._value = value
16 if (self._value is _no_value and self._delegate is None):
22 if self._value is not _no_value:
23 return self._value
27 self._value = self._delegate.Get()
28 return self._value
rietveld_patcher.py 61 self._value = {}
87 self._value[path] = data
89 self._value[path] = ToUnicode(data)
91 return self._value
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCPair.m 35 _value = [value copy];
  /external/webrtc/src/system_wrappers/interface/
atomic32.h 54 // Checks if |_value| is 32bit aligned.
56 return (reinterpret_cast<ptrdiff_t>(&_value) & 3) == 0;
61 WebRtc_Word32 _value; member in class:webrtc::Atomic32
  /packages/apps/Exchange/src/com/android/exchange/
MockParserStream.java 48 public void setResult(Object _value) {
49 value = _value;
  /external/chromium_org/third_party/WebKit/Source/wtf/tests/
CheckedArithmeticOperations.cpp 75 type _value = 0; \
76 EXPECT_EQ(true, CheckedState::DidNotOverflow == (value * Checked<type, RecordOverflow>(0)).safeGet(_value)); \
77 _value = 0; \
78 EXPECT_EQ(true, CheckedState::DidNotOverflow == (Checked<type, RecordOverflow>(0) * value).safeGet(_value)); \
79 _value = 0; \
80 EXPECT_EQ(true, CheckedState::DidOverflow == (value * Checked<type, RecordOverflow>(std::numeric_limits<type>::max())).safeGet(_value)); \
81 _value = 0; \
82 EXPECT_EQ(true, CheckedState::DidOverflow == (Checked<type, RecordOverflow>(std::numeric_limits<type>::max()) * value).safeGet(_value)); \
84 _value = 0; \
85 EXPECT_EQ(true, CheckedState::DidNotOverflow == (value * Checked<type, RecordOverflow>(std::numeric_limits<type>::max())).safeGet(_value)); \
    [all...]
  /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...]
  /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...]
  /dalvik/vm/
AtomicCache.h 91 # define CACHE_XARG(_value) ,_value
93 # define CACHE_XARG(_value)
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 70 for _name, _value in globals().items():
71 if type(_value) is type(0):
72 tok_name[_value] = _name
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symbol.py 101 for _name, _value in globals().items():
102 if type(_value) is type(0):
103 sym_name[_value] = _name
token.py 71 for _name, _value in globals().items():
72 if type(_value) is type(0):
73 tok_name[_value] = _name
74 del _name, _value
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 70 for _name, _value in globals().items():
71 if type(_value) is type(0):
72 tok_name[_value] = _name
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
symbol.py 101 for _name, _value in globals().items():
102 if type(_value) is type(0):
103 sym_name[_value] = _name
token.py 71 for _name, _value in globals().items():
72 if type(_value) is type(0):
73 tok_name[_value] = _name
74 del _name, _value
  /external/tinyxml2/
tinyxml2.h 487 XMLElement* FirstChildElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( _value )); }
497 XMLElement* LastChildElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->LastChildElement(_value) ); }
505 XMLElement* PreviousSiblingElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->PreviousSiblingElement( _value ) ); }
513 XMLElement* NextSiblingElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->NextSiblingElement( _value ) ); }
907 int QueryIntAttribute( const char* name, int* _value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) return XML_NO_ATTRIBUTE; return a->QueryIntValue( _value ); }
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/tests/
range_dict_tests.py 21 self._value = 0
24 return str(self._value)
27 return '<TestAttribute:%d>' % self._value
30 return self._value
33 self._value = new_value
37 new_attr.set(self._value)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
RemoteObject.js 643 this._value = value;
665 this._cachedDescription = "" + this._value;
678 this._cachedDescription = String(this._value);
713 return typeof this._value;
721 if (this._value === null)
724 if (this._value instanceof Array)
727 if (this._value instanceof Date)
738 if ((typeof this._value !== "object") || (this._value === null))
740 return !!Object.keys(/** @type {!Object} */ (this._value)).length
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 68 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];

Completed in 297 milliseconds

1 2 3 4 5 6