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

1 2 3 4 5 6 7 8 910

  /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/clang/test/ARCMT/
autoreleases.m.result 34 -(void) setProp:(id) newVal {
35 _prop = newVal;
37 -(void) setProp2:(CFTypeRef) newVal {
38 _prop = (id)CFBridgingRelease(CFRetain(newVal));
44 -(void) setXpc_prop:(xpc_object_t) newVal {
45 _xpc_prop = newVal;
60 void test(A *prevVal, A *newVal) {
61 prevVal = newVal;
autoreleases.m 34 -(void) setProp:(id) newVal {
36 _prop = [newVal retain];
38 -(void) setProp2:(CFTypeRef) newVal {
40 _prop = (id)CFRetain(newVal);
46 -(void) setXpc_prop:(xpc_object_t) newVal {
48 _xpc_prop = xpc_retain(newVal);
63 void test(A *prevVal, A *newVal) {
65 prevVal = [newVal retain];
  /external/llvm/test/CodeGen/PowerPC/
pr15630.ll 8 %newval = alloca i8
10 store i8 %newval_arg, i8* %newval
11 %tmp = load i8* %newval
  /external/llvm/test/CodeGen/AArch64/
bitfield-insert.ll 34 %newval = load volatile i32* %new
35 %newval_shifted = shl i32 %newval, 26
53 %newval = load volatile i64* %new
54 %newval_shifted = shl i64 %newval, 26
72 %newval = load volatile i64* %new
73 %newval_masked = and i64 %newval, 65535 ; = 0xffff
89 %newval = load volatile i32* %new
90 %newval_shifted = shl i32 %newval, 3
107 %newval = load volatile i64* %new
108 %newval_shifted = shl i64 %newval, 4
    [all...]
bitfield-insert-0.ll 12 %newval = load volatile i32* %new
13 %newval_masked = and i32 %newval, 262143 ; = 0x0003_ffff
atomic-ops-not-barriers.ll 8 %newval = add nsw i32 %oldval, -1
9 store i32 %newval, i32* %var
24 %combined = phi i32 [ %val, %atomic_ver ], [ %newval, %simple_ver]
  /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);
89 LONG _InterlockedCompareExchange(volatile LONG* ptr, LONG newval, LONG oldval);
92 LONG newval, LONG oldval) {
93 return _InterlockedCompareExchange(ptr, newval, oldval);
96 LONG _InterlockedExchange(volatile LONG* ptr, LONG newval);
98 inline LONG FastInterlockedExchange(volatile LONG* ptr, LONG newval) {
99 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/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...]
  /packages/apps/Camera/src/com/android/camera/ui/
CountDownView.java 67 private void remainingSecondsChanged(int newVal) {
68 mRemainingSecs = newVal;
69 if (newVal == 0) {
75 String localizedValue = String.format(locale, "%d", newVal);
84 if (newVal == 1) {
86 } else if (newVal <= 3) {
  /packages/apps/Camera2/src/com/android/camera/ui/
CountDownView.java 67 private void remainingSecondsChanged(int newVal) {
68 mRemainingSecs = newVal;
69 if (newVal == 0) {
75 String localizedValue = String.format(locale, "%d", newVal);
84 if (newVal == 1) {
86 } else if (newVal <= 3) {
  /external/opencv/cv/src/
cvfloodfill.cpp 103 uchar newVal[] = {0,0,0};
113 newVal[0] = _newVal[0];
115 img[L] = newVal[0];
118 img[R] = newVal[0];
121 img[L] = newVal[0];
127 ICV_SET_C3( newVal, _newVal );
129 ICV_SET_C3( img + L*3, newVal );
132 ICV_SET_C3( img + L*3, newVal );
135 ICV_SET_C3( img + R*3, newVal );
180 img[i] = newVal[0]
    [all...]
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
TextEditor.java 43 Object newVal = parseValue(s.length() == 0 ? null : s.toString());
44 if (equal(newVal, item.getValue()))
46 item.setValue(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;
  /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)
  /external/llvm/test/CodeGen/SystemZ/
int-cmp-45.ll 30 %newval = select i1 %cmp, i32 %b, i32 %c
31 store i32 %newval, i32 *%cptr
71 %newval = select i1 %cmp, i32 %c, i32 %b
72 store i32 %newval, i32 *%cptr
112 %newval = select i1 %cmp, i32 %c, i32 %b
113 store i32 %newval, i32 *%cptr
  /dalvik/vm/
DvmDex.cpp 227 bool dvmDexChangeDex1(DvmDex* pDvmDex, u1* addr, u1 newVal)
229 if (*addr == newVal) {
230 ALOGV("+++ byte at %p is already 0x%02x", addr, newVal);
240 ALOGV("+++ change byte at %p from 0x%02x to 0x%02x", addr, *addr, newVal);
246 *addr = newVal;
264 bool dvmDexChangeDex2(DvmDex* pDvmDex, u2* addr, u2 newVal)
266 if (*addr == newVal) {
267 ALOGV("+++ value at %p is already 0x%04x", addr, newVal);
277 ALOGV("+++ change 2byte at %p from 0x%04x to 0x%04x", addr, *addr, newVal);
283 *addr = newVal;
    [all...]
  /external/chromium_org/third_party/icu/source/common/
umutex.c 115 #define SYNC_COMPARE_AND_SWAP(dest, oldval, newval) \
116 mutexed_compare_and_swap(dest, newval, oldval)
125 #define SYNC_COMPARE_AND_SWAP(dest, oldval, newval) \
126 InterlockedCompareExchangePointer(dest, newval, oldval)
137 #define SYNC_COMPARE_AND_SWAP(dest, oldval, newval) \
138 __sync_val_compare_and_swap(dest, oldval, newval)
140 #define SYNC_COMPARE_AND_SWAP(dest, oldval, newval) \
141 mutexed_compare_and_swap(dest, newval, oldval)
152 #define SYNC_COMPARE_AND_SWAP(dest, oldval, newval) \
153 mutexed_compare_and_swap(dest, newval, oldval
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
TwoFieldDatePicker.java 64 public void onValueChange(NumberPicker picker, int oldVal, int newVal) {
69 positionInYear = newVal;
70 if (oldVal == picker.getMaxValue() && newVal == picker.getMinValue()) {
73 } else if (oldVal == picker.getMinValue() && newVal == picker.getMaxValue()) {
78 year = newVal;
  /external/chromium_org/chrome/browser/resources/sync_internals/
about.js 5 function highlightIfChanged(node, oldVal, newVal) {
11 var newStr = newVal.toString();
  /external/icu4c/common/
umutex.cpp 57 #define SYNC_COMPARE_AND_SWAP(dest, oldval, newval) \
58 InterlockedCompareExchangePointer(dest, newval, oldval)
62 #define SYNC_COMPARE_AND_SWAP(dest, oldval, newval) \
63 __sync_val_compare_and_swap(dest, oldval, newval)
65 #define SYNC_COMPARE_AND_SWAP(dest, oldval, newval) \
66 mutexed_compare_and_swap(dest, newval, oldval)
71 #define SYNC_COMPARE_AND_SWAP(dest, oldval, newval) \
72 mutexed_compare_and_swap(dest, newval, oldval)
75 static void *mutexed_compare_and_swap(void **dest, void *newval, void *oldval);
353 static void *mutexed_compare_and_swap(void **dest, void *newval, void *oldval)
    [all...]
  /dalvik/vm/analysis/
Optimize.h 31 void dvmUpdateCodeUnit(const Method* meth, u2* ptr, u2 newVal);
  /external/kernel-headers/original/asm-generic/
futex.h 53 futex_atomic_cmpxchg_inatomic(int __user *uaddr, int oldval, int newval)
  /external/kernel-headers/original/linux/netfilter_ipv4/
ip_nat.h 77 u_int32_t newval,

Completed in 3058 milliseconds

1 2 3 4 5 6 7 8 910