Searched refs:previous (Results 26 - 50 of 592) sorted by last modified time

1234567891011>>

/external/valgrind/main/helgrind/tests/
H A Drwlock_race.stderr.exp24 This conflicts with a previous write of size 4 by thread #x
H A Dtc01_simple_race.stderr.exp19 This conflicts with a previous write of size 4 by thread #x
33 This conflicts with a previous write of size 4 by thread #x
H A Dtc05_simple_race.stderr.exp19 This conflicts with a previous write of size 4 by thread #x
33 This conflicts with a previous write of size 4 by thread #x
H A Dtc06_two_races.stderr.exp19 This conflicts with a previous write of size 4 by thread #x
33 This conflicts with a previous write of size 4 by thread #x
47 This conflicts with a previous write of size 4 by thread #x
61 This conflicts with a previous write of size 4 by thread #x
H A Dtc06_two_races_xml.stderr.exp95 <text>This conflicts with a previous write of size 4 by thread #x</text>
140 <text>This conflicts with a previous write of size 4 by thread #x</text>
185 <text>This conflicts with a previous write of size 4 by thread #x</text>
230 <text>This conflicts with a previous write of size 4 by thread #x</text>
H A Dtc16_byterace.stderr.exp19 This conflicts with a previous write of size 1 by thread #x
33 This conflicts with a previous write of size 1 by thread #x
H A Dtc19_shadowmem.stderr.exp31 This conflicts with a previous write of size 1 by thread #x
65 This conflicts with a previous write of size 1 by thread #x
99 This conflicts with a previous write of size 1 by thread #x
133 This conflicts with a previous write of size 1 by thread #x
167 This conflicts with a previous write of size 1 by thread #x
201 This conflicts with a previous write of size 1 by thread #x
235 This conflicts with a previous write of size 1 by thread #x
269 This conflicts with a previous write of size 1 by thread #x
303 This conflicts with a previous write of size 1 by thread #x
337 This conflicts with a previous writ
[all...]
H A Dtc20_verifywrap.stderr.exp25 This conflicts with a previous write of size 2 by thread #x
H A Dtc21_pthonce.stderr.exp24 This conflicts with a previous write of size 4 by thread #x
40 This conflicts with a previous write of size 4 by thread #x
/external/tinyxml/
H A Dtinyxml.h515 IterateChildren takes the previous child as input and finds
516 the next one. If the previous child is null, it returns the
519 const TiXmlNode* IterateChildren( const TiXmlNode* previous ) const;
520 TiXmlNode* IterateChildren( TiXmlNode* previous );
523 const TiXmlNode* IterateChildren( const char * value, const TiXmlNode* previous ) const;
524 TiXmlNode* IterateChildren( const char * value, TiXmlNode* previous );
527 const TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) const { return IterateChildren (_value.c_str (), previous); } ///< STL std::string form.
528 TiXmlNode* IterateChildren( const std::string& _value, TiXmlNode* previous ) { return IterateChildren (_value.c_str (), previous); } ///< ST
[all...]
/external/tcpdump/
H A Dconfigure771 # If the previous option needs an argument, assign it.
2305 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
2306 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
2309 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
2310 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
2319 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
2320 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
2323 { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
2324 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
4228 # treat the previous failur
[all...]
/external/stlport/src/
H A Dios.cpp124 locale previous = _M_locale; local
127 return previous;
/external/stlport/stlport/stl/
H A D_slist.h458 iterator previous(const_iterator __pos) { function in class:slist
461 const_iterator previous(const_iterator __pos) const { function in class:slist
893 _M_iter = __x.previous(__i);
/external/stlport/stlport/stl/debug/
H A D_slist.h224 iterator previous(const_iterator __pos) { function in class:slist
227 return iterator(&_M_iter_list, _M_non_dbg_impl.previous(__pos._M_iterator));
229 const_iterator previous(const_iterator __pos) const { function in class:slist
232 return const_iterator(&_M_iter_list, _M_non_dbg_impl.previous(__pos._M_iterator));
/external/stlport/stlport/stl/pointers/
H A D_slist.h220 iterator previous(const_iterator __pos) function in class:slist
221 { return iterator(_M_impl.previous(_BaseConstIte(__pos._M_node))._M_node); }
222 const_iterator previous(const_iterator __pos) const function in class:slist
223 { return const_iterator(const_cast<_Node_base*>(_M_impl.previous(_BaseConstIte(__pos._M_node))._M_node)); }
/external/stlport/test/unit/
H A Dslist_test.cpp301 sl1.splice_after(sl1.before_begin(), sl1, sl1.begin(), sl1.previous(sl1.end()));
310 sl2.splice_after(sl2.before_begin(), sl2, sl2.before_begin(), sl2.previous(sl2.end()));
318 sl2.splice_after(sl2.previous(sl2.end()), sl2, sl2.before_begin(), slit);
/external/srtp/crypto/cipher/
H A Daes_cbc.c140 /* set state and 'previous' block to iv */
142 c->previous.v8[i] = c->state.v8[i] = input[i];
204 v128_t state, previous; local
216 /* set 'previous' block to iv*/
218 previous.v8[i] = c->previous.v8[i];
222 v128_hex_string(&previous));
245 * exor previous ciphertext block out of plaintext, and write new
247 * to the 'previous' block
251 *output++ = state.v8[i] ^ previous
[all...]
/external/srtp/crypto/include/
H A Daes_cbc.h19 v128_t previous; /* previous ciphertext block */ member in struct:__anon31187
/external/skia/platform_tools/android/examples/hello_skia_app/jni/
H A DAndroid.mk23 include $(CLEAR_VARS) # clear out the variables of the previous module
/external/skia/src/pathops/
H A DSkOpAngle.cpp552 while ((angle = angle->previous()) != firstBest) {
868 // OPTIMIZE: if this shows up in a profile, add a previous pointer
870 SkOpAngle* SkOpAngle::previous() const { function in class:SkOpAngle
H A DSkOpAngle.h51 SkOpAngle* previous() const;
136 bool fStop; // set if ordered angle is greater than the previous
H A DSkOpSegment.cpp1549 SkOpAngle* angle = firstAngle->previous();
1582 prior = angle->previous();
/external/smack/asmack-master/lib/
H A Dhttpcore-4.1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
/external/smack/src/org/jivesoftware/smack/util/
H A DCache.java508 head.next = head.previous = head;
530 LinkedListNode node = head.previous;
545 node.previous = head;
546 node.previous.next = node;
547 node.next.previous = node;
560 node.previous.next = node;
561 node.next.previous = node;
573 LinkedListNode node = new LinkedListNode(object, head, head.previous);
574 node.previous.next = node;
575 node.next.previous
628 public LinkedListNode previous; field in class:Cache.LinkedListNode
652 LinkedListNode(Object object, LinkedListNode next, LinkedListNode previous) argument
[all...]
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractEmptyIterator.java49 public E previous() { method in class:AbstractEmptyIterator

Completed in 363 milliseconds

1234567891011>>