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

1 2 3 4 5

  /external/bluetooth/glib/glib/
gatomic.h 47 gint newval);
50 gpointer newval);
54 gint newval);
57 gpointer newval);
61 # define g_atomic_int_set(atomic, newval) ((void) (*(atomic) = (newval)))
63 # define g_atomic_pointer_set(atomic, newval) ((void) (*(atomic) = (newval)))
68 # define g_atomic_int_set(atomic, newval) \
70 (g_atomic_int_set) ((volatile gint G_GNUC_MAY_ALIAS *) (void *) (atomic), (newval)))
    [all...]
gatomic.c 62 gint newval)
68 : "r" (newval), "m" (*atomic), "0" (oldval));
80 gpointer newval)
86 : "r" (newval), "m" (*atomic), "0" (oldval));
94 # define ATOMIC_INT_CMP_XCHG(atomic, oldval, newval) \
100 "0" (newval)); \
108 gpointer newval)
114 "0" (newval));
121 gpointer newval)
128 "0" (newval));
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/PerlSupport/
DumpRenderTreeSupportPregenerated.pm 33 my ($self,$field,$newval) = @_;
35 $self->$member_func($newval);
  /dalvik/vm/
DvmDex.cpp 232 bool dvmDexChangeDex1(DvmDex* pDvmDex, u1* addr, u1 newVal)
234 if (*addr == newVal) {
235 LOGV("+++ byte at %p is already 0x%02x", addr, newVal);
245 LOGV("+++ change byte at %p from 0x%02x to 0x%02x", addr, *addr, newVal);
251 *addr = newVal;
269 bool dvmDexChangeDex2(DvmDex* pDvmDex, u2* addr, u2 newVal)
271 if (*addr == newVal) {
272 LOGV("+++ value at %p is already 0x%04x", addr, newVal);
282 LOGV("+++ change 2byte at %p from 0x%04x to 0x%04x", addr, *addr, newVal);
288 *addr = newVal;
    [all...]
DvmDex.h 100 bool dvmDexChangeDex1(DvmDex* pDvmDex, u1* addr, u1 newVal);
101 bool dvmDexChangeDex2(DvmDex* pDvmDex, u2* addr, u2 newVal);
  /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...]
  /external/llvm/include/llvm/ADT/
TinyPtrVector.h 98 void push_back(EltTy NewVal) {
99 assert(NewVal != 0 && "Can't add a null value");
103 Val = NewVal;
114 Val.template get<VecTy*>()->push_back(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/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-001.js 46 function set_y (newVal)
48 this._y = newVal;
getset-002.js 39 y setter: function set_y (newVal)
41 this._y = newVal;
  /external/bluetooth/glib/docs/reference/glib/tmpl/
atomic_operations.sgml 89 @newval: the new value
121 if they are equal, atomically exchanges *@atomic with @newval.
130 @newval: the new value of *@atomic.
154 @newval: the new value
160 if they are equal, atomically exchanges *@atomic with @newval.
169 @newval: the new value of *@atomic.
  /external/llvm/test/CodeGen/Mips/
atomic.ll 34 define i32 @AtomicSwap32(i32 %newval) nounwind {
36 %newval.addr = alloca i32, align 4
37 store i32 %newval, i32* %newval.addr, align 4
38 %tmp = load i32* %newval.addr, align 4
50 define i32 @AtomicCmpSwap32(i32 %oldval, i32 %newval) nounwind {
52 %newval.addr = alloca i32, align 4
53 store i32 %newval, i32* %newval.addr, align 4
54 %tmp = load i32* %newval.addr, align
    [all...]
  /external/icu4c/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/llvm/lib/Target/Mips/
MipsJITInfo.cpp 121 intptr_t NewVal = (intptr_t) JITCompilerFunction((void*) StubAddr);
126 // lui $t9, %hi(NewVal)
127 // addiu $t9, $t9, %lo(NewVal)
131 int Hi = ((unsigned)NewVal & 0xffff0000) >> 16;
132 if ((NewVal & 0x8000) != 0)
134 int Lo = (int)(NewVal & 0xffff);
  /external/llvm/test/CodeGen/CellSPU/
call.ll 49 %newval = add i32 %oldval,1
50 %newrv = insertvalue %0 %rv, i32 %newval, 1
  /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,
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerInterface.cpp 42 uint32_t newval; local
43 newval = imm >> 2;
44 newval |= (imm&3) << 30;
45 imm = newval;
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 479 Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent());
480 replaceLoadWithValue(ALoad, NewVal);
483 if (NewVal == ALoad) NewVal = UndefValue::get(NewVal->getType());
484 ALoad->replaceAllUsesWith(NewVal);
485 ReplacedLoads[ALoad] = NewVal;
501 Value *NewVal = ReplacedLoads[User];
502 assert(NewVal && "not a replaced load?");
507 DenseMap<Value*, Value*>::iterator RLI = ReplacedLoads.find(NewVal);
    [all...]
  /dalvik/vm/test/
AtomicTest.cpp 93 static int compareAndSwap(int oldVal, int newVal, int* addr) __attribute__((noinline));
94 static int compareAndSwapWide(int64_t oldVal, int64_t newVal, int64_t* addr) __attribute__((noinline));
108 static int compareAndSwap(int32_t oldVal, int32_t newVal, int32_t* addr)
111 *addr = newVal;
116 static int compareAndSwapWide(int64_t oldVal, int64_t newVal, int64_t* addr)
119 *addr = newVal;
  /external/opencv/cvaux/src/
cvsegment.cpp 87 int* newVal, int d_lw, int d_up,
191 newVal[0] = cvRound( sum[0] * inv_area );
192 newVal[1] = cvRound( sum[1] * inv_area );
193 newVal[2] = cvRound( sum[2] * inv_area );
208 CvSize /*roi*/, int* newVal,
213 uchar uv[] = { (uchar)newVal[0], (uchar)newVal[1], (uchar)newVal[2] };
  /external/webkit/Source/JavaScriptCore/wtf/
HashCountedSet.h 166 unsigned newVal = oldVal - 1;
167 if (newVal) {
168 it->second = newVal;
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
DerOutputStream.java 109 Object[][] newVal = new Object[val.length * 2][];
110 System.arraycopy(val, 0, newVal, 0, val.length);
111 val = newVal;
  /external/llvm/lib/VMCore/
DebugLoc.cpp 288 MDNode *NewVal = dyn_cast<MDNode>(NewVa);
289 if (NewVal == 0) return deleted();
305 setValPtr(NewVal);
307 int NewEntry = Ctx->getOrAddScopeRecordIdxEntry(NewVal, Idx);
309 // If NewVal already has an entry, this becomes a non-canonical reference,
334 setValPtr(NewVal);
338 // If NewVal already has an entry, this becomes a non-canonical reference,

Completed in 1279 milliseconds

1 2 3 4 5