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

1 2 3 4 5

  /external/chromium_org/native_client_sdk/src/libraries/sdk_util/
atomicops.h 74 Atomic32 newval;
77 newval = oldval & value;
78 } while (InterlockedCompareExchange(ptr, newval, oldval) != oldval);
80 return newval;
85 Atomic32 newval;
88 newval = oldval | value;
89 } while (InterlockedCompareExchange(ptr,newval, oldval) != oldval);
91 return newval;
96 Atomic32 newval;
99 newval = oldval ^ value
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
envset.cmd 79 newval = ''
89 if mode = ';' & pos(' ', newval) > 0 then newval = '"' || newval || '"'
92 x = value(envar, newval, env)
95 addval: procedure expose sep equal orig expand newval mode env
128 if newval = '' then newval = expvar
129 else newval = newval || sep || expva
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
atomicops-internals-windows.h 74 LONG newval, LONG oldval) {
75 return ::InterlockedCompareExchange(const_cast<LONG*>(ptr), newval, oldval);
77 inline LONG FastInterlockedExchange(volatile LONG* ptr, LONG newval) {
78 return ::InterlockedExchange(const_cast<LONG*>(ptr), newval);
93 LONG _InterlockedCompareExchange(volatile LONG* ptr, LONG newval, LONG oldval);
96 LONG _InterlockedExchange(volatile LONG* ptr, LONG newval);
104 LONG newval, LONG oldval) {
105 return _InterlockedCompareExchange(ptr, newval, oldval);
108 inline LONG FastInterlockedExchange(volatile LONG* ptr, LONG newval) {
109 return _InterlockedExchange(ptr, newval);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
atomicops-internals-windows.h 73 LONG newval, LONG oldval) {
74 return ::InterlockedCompareExchange(const_cast<LONG*>(ptr), newval, oldval);
76 inline LONG FastInterlockedExchange(volatile LONG* ptr, LONG newval) {
77 return ::InterlockedExchange(const_cast<LONG*>(ptr), newval);
88 LONG _InterlockedCompareExchange(volatile LONG* ptr, LONG newval, LONG oldval);
91 LONG newval, LONG oldval) {
92 return _InterlockedCompareExchange(ptr, newval, oldval);
95 LONG _InterlockedExchange(volatile LONG* ptr, LONG newval);
97 inline LONG FastInterlockedExchange(volatile LONG* ptr, LONG newval) {
98 return _InterlockedExchange(ptr, newval);
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_atomic.h 64 int32_t newval; \
65 newval = atomic_fetchadd_int(addr, -val); \
66 if (newval < 0) { \
73 int32_t newval; \
74 newval = atomic_fetchadd_int(addr, -val); \
75 if (newval < 0) { \
  /external/chromium_org/base/memory/
singleton.h 251 Type* newval = Traits::New(); local
259 &instance_, reinterpret_cast<base::subtle::AtomicWord>(newval));
261 if (newval != NULL && Traits::kRegisterAtExit)
264 return newval;
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
pratom.h 76 ** newval: The newvalue to assign to val
80 NSPR_API(PRInt32) PR_AtomicSet(PRInt32 *val, PRInt32 newval);
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/
Visualization3RS.java 104 short newval = (short)(val * (i/16+1)); local
106 if (newval >= oldval - 800) {
109 newval = (short)(oldval - 800);
111 mAnalyzer[i] = newval;
  /bionic/libc/bionic/
pthread_mutex.cpp 429 int newval = mvalue + MUTEX_COUNTER_BITS_ONE; local
430 if (__predict_true(__bionic_cmpxchg(mvalue, newval, &mutex->value) == 0)) {
473 int newval = MUTEX_OWNER_TO_BITS(tid) | mtype | MUTEX_STATE_BITS_LOCKED_UNCONTENDED; local
474 if (__bionic_cmpxchg(mvalue, newval, &mutex->value) == 0) {
483 int newval; local
492 newval = MUTEX_OWNER_TO_BITS(tid) | mtype | MUTEX_STATE_BITS_LOCKED_CONTENDED;
497 if (__predict_false(__bionic_cmpxchg(mvalue, newval, &mutex->value) != 0)) {
508 newval = MUTEX_STATE_BITS_FLIP_CONTENTION(mvalue); /* locked state 1 => state 2 */
509 if (__predict_false(__bionic_cmpxchg(mvalue, newval, &mutex->value) != 0)) {
513 mvalue = newval;
554 int newval = mvalue - MUTEX_COUNTER_BITS_ONE; local
695 int newval = MUTEX_STATE_BITS_FLIP_CONTENTION(mvalue); local
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_nspr_pthread.h 57 #define _MD_SET_CURRENT_THREAD(newval) \
58 pthread_setspecific(current_thread_key, (void *)newval)
60 #define _MD_SET_CURRENT_CPU(newval) \
61 pthread_setspecific(current_cpu_key, (void *)newval)
63 #define _MD_SET_LAST_THREAD(newval) \
64 pthread_setspecific(last_thread_key, (void *)newval)
_osf1.h 249 #define _MD_ATOMIC_SET(val, newval) __ATOMIC_EXCH_LONG(val, newval)
_darwin.h 96 extern PRInt32 _PR_DarwinPPC_AtomicSet(PRInt32 *val, PRInt32 newval);
97 #define _MD_ATOMIC_SET(val, newval) _PR_DarwinPPC_AtomicSet(val, newval)
_solaris.h 178 NSPR_API(PRInt32) _MD_AtomicSet(PRInt32 *val, PRInt32 newval);
250 #define _MD_SET_CURRENT_THREAD(newval) \
252 thr_setspecific(threadid_key, (void *)newval); \
255 #define _MD_SET_CURRENT_CPU(newval) \
257 thr_setspecific(cpuid_key, (void *)newval); \
260 #define _MD_SET_LAST_THREAD(newval) \
262 thr_setspecific(last_thread_key, (void *)newval); \
_aix.h 107 #define _MD_ATOMIC_SET(val, newval) _AIX_AtomicSet(val, newval)
_openvms.h 324 #define _MD_ATOMIC_SET(val, newval) __ATOMIC_EXCH_LONG(val, newval)
_linux.h 97 extern PRInt32 _PR_x86_AtomicSet(PRInt32 *val, PRInt32 newval);
110 extern PRInt32 _PR_ia64_AtomicSet(PRInt32 *val, PRInt32 newval);
123 extern PRInt32 _PR_x86_64_AtomicSet(PRInt32 *val, PRInt32 newval);
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree_util.tcl 66 set newval [format "%.${iPrec}f" [lindex $node $ii $jj]]
67 lset node $ii $jj $newval
  /external/mksh/src/
misc.c 243 unsigned char newval = (newset ? 1 : 0); local
246 change_xtrace(newval, true);
250 Flag(f) = newval = (newset ? 1 : 0);
253 if (what != OF_CMDLINE && newval != oldval)
262 f == FEMACS || f == FGMACS) && newval) {
267 Flag(f) = newval;
270 if (f == FPRIVILEGED && oldval && !newval) {
294 } else if ((f == FPOSIX || f == FSH) && newval) {
300 Flag(FTALKING_I) = newval;
305 change_xtrace(unsigned char newval, bool dosnapshot
    [all...]
  /hardware/intel/img/hwcomposer/ips/anniedale/
AnnOverlayPlane.cpp 355 uint32_t newval; local
470 newval = (xscaleInt << 15) |
472 if (newval != backBuffer->YRGBSCALE) {
474 backBuffer->YRGBSCALE = newval;
477 newval = (xscaleIntUV << 15) | ((xscaleFractUV & 0xFFF) << 3) |
479 if (newval != backBuffer->UVSCALE) {
481 backBuffer->UVSCALE = newval;
484 newval = yscaleInt << 16 | yscaleIntUV;
485 if (newval != backBuffer->UVSCALEV) {
487 backBuffer->UVSCALEV = newval;
    [all...]
  /hardware/intel/img/hwcomposer/ips/common/
OverlayPlaneBase.cpp 975 uint32_t newval; local
1052 newval = (xscaleInt << 15) |
1054 if (newval != backBuffer->YRGBSCALE) {
1056 backBuffer->YRGBSCALE = newval;
1059 newval = (xscaleIntUV << 15) | ((xscaleFractUV & 0xFFF) << 3) |
1061 if (newval != backBuffer->UVSCALE) {
1063 backBuffer->UVSCALE = newval;
1066 newval = yscaleInt << 16 | yscaleIntUV;
1067 if (newval != backBuffer->UVSCALEV) {
1069 backBuffer->UVSCALEV = newval;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocevents.cpp 453 const TInt newval = array[k + 1]; local
454 if(oldval >= 0 && oldval < MAX_SCANCODE && newval >= 0 && newval < MAX_SCANCODE)
456 keymap[oldval] = temp[newval];
  /external/strace/
system.c 443 info.oldlenp, info.newval, (unsigned long)info.newlen);
567 if (info.newval == NULL)
570 tprintf("%p", info.newval);
572 printpath(tcp, (size_t)info.newval);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 143 newval = x.value + 1
144 x.value = newval
148 self.assertEqual(x.label['text'], newval)
156 self.assertEqual(x.label['text'], newval)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 143 newval = x.value + 1
144 x.value = newval
148 self.assertEqual(x.label['text'], newval)
156 self.assertEqual(x.label['text'], newval)
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_bsd_addr.c 969 int value, newval, thisend, thisbegin; local
997 newval = SCTP_BASE_VAR(packet_log_end) + total_len;
998 if (newval >= SCTP_PACKET_LOG_SIZE) {
1004 thisend = newval;
1011 newval = SCTP_BASE_VAR(packet_log_end) + total_len;
1012 if (newval >= SCTP_PACKET_LOG_SIZE) {
1018 thisend = newval;

Completed in 1989 milliseconds

1 2 3 4 5