/external/compiler-rt/lib/profile/ |
InstrProfilingPort.h | 59 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \ 60 (InterlockedCompareExchange64((LONGLONG volatile *)Ptr, (LONGLONG)NewV, \ 66 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \ 67 (InterlockedCompareExchange((LONG volatile *)Ptr, (LONG)NewV, (LONG)OldV) == \ 74 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \ 75 __sync_bool_compare_and_swap(Ptr, OldV, NewV) 81 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \ 82 lprofBoolCmpXchg((void **)Ptr, OldV, NewV)
|
InstrProfilingUtil.h | 30 unsigned lprofBoolCmpXchg(void **Ptr, void *OldV, void *NewV);
|
InstrProfilingUtil.c | 51 uint32_t lprofBoolCmpXchg(void **Ptr, void *OldV, void *NewV) { 54 *Ptr = NewV;
|
/external/libdrm/ |
xf86atomic.h | 56 # define atomic_cmpxchg(x, oldv, newv) __sync_val_compare_and_swap (&(x)->atomic, oldv, newv) 76 # define atomic_cmpxchg(x, oldv, newv) AO_compare_and_swap_full(&(x)->atomic, oldv, newv) 100 # define atomic_cmpxchg(x, oldv, newv) atomic_cas_uint (&(x)->atomic, oldv, newv)
|
/external/c-ares/ |
maketgz | 23 open(NEWV, ">ares_version.h.dist"); 30 print NEWV $_; 33 close(NEWV);
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXInferAddressSpaces.cpp | 390 Value *NewV = cloneInstructionWithNewAddressSpace( 392 if (Instruction *NewI = dyn_cast<Instruction>(NewV)) { 398 return NewV; 532 User *NewV = cast<User>(ValueWithNewAddrSpace.lookup(V)); 534 assert(isa<UndefValue>(NewV->getOperand(OperandNo))); 535 NewV->setOperand(OperandNo, ValueWithNewAddrSpace.lookup(UndefUse->get())); 540 Value *NewV = ValueWithNewAddrSpace.lookup(V); 541 if (NewV == nullptr) 547 DEBUG(dbgs() << "Replacing the uses of " << *V << "\n to\n " << *NewV 553 // operand to NewV. This replacement does not change the element type [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_program_constants.h | 122 #define SET_SWZ(swz, idx, newv) \ 124 (swz) = ((swz) & ~(7 << ((idx)*3))) | ((newv) << ((idx)*3)); \
|
radeon_pair_schedule.c | 1212 struct reg_value * newv; local [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue103/ |
FakeMap.java | 51 public V setValue(V newV) { 53 val = newV;
|
/external/compiler-rt/test/tsan/ |
real_deadlock_detector_stress_test.cc | 66 int newv = old + 1; local 68 newv = kStateLocked; 69 if (cas(&m->state, old, newv)) {
|
/external/mesa3d/src/compiler/nir/ |
nir_lower_io_to_temporaries.c | 49 nir_variable *newv = exec_node_data(nir_variable, new_node, node); local 64 if (newv->data.read_only) 69 copy->variables[0] = nir_deref_var_create(copy, newv);
|
/external/llvm/lib/Transforms/Scalar/ |
Float2Int.cpp | 457 Value *NewV = nullptr; 462 NewV = IRB.CreateZExtOrTrunc(NewOperands[0], I->getType()); 466 NewV = IRB.CreateSExtOrTrunc(NewOperands[0], I->getType()); 472 NewV = IRB.CreateICmp(P, NewOperands[0], NewOperands[1], I->getName()); 477 NewV = IRB.CreateZExtOrTrunc(NewOperands[0], ToTy); 481 NewV = IRB.CreateSExtOrTrunc(NewOperands[0], ToTy); 487 NewV = IRB.CreateBinOp(mapBinOpcode(I->getOpcode()), 495 I->replaceAllUsesWith(NewV); 497 ConvertedInsts[I] = NewV; 498 return NewV; [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/ |
TaskKeyLruCache.java | 49 protected void entryRemoved(boolean evicted, Integer taskId, V oldV, V newV) {
|
/external/clang/test/SemaObjC/ |
unused-backing-ivar-warning.m | 25 - (void) setV:(id)newV { // expected-warning {{ivar '_v' which backs the property is not referenced in this property's accessor}} 26 _y = newV;
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
FocusHelper.java | 599 View newV = views.get(newI); 600 if (newV instanceof BubbleTextView || newV instanceof FolderIcon) { 601 return newV; 636 View newV = views.get(index); 637 CellLayout.LayoutParams tmpLp = (CellLayout.LayoutParams) newV.getLayoutParams(); 640 (newV instanceof BubbleTextView || newV instanceof FolderIcon)) { [all...] |
/dalvik/dexgen/src/com/android/dexgen/util/ |
IntList.java | 274 int[] newv = new int[size * 3 / 2 + 10]; local 275 System.arraycopy(values, 0, newv, 0, size); 276 values = newv;
|
/dalvik/dx/src/com/android/dx/util/ |
IntList.java | 274 int[] newv = new int[size * 3 / 2 + 10]; local 275 System.arraycopy(values, 0, newv, 0, size); 276 values = newv;
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
CarrierDatabaseHelper.java | 95 Log.d(TAG, "dbh.onUpgrade:+ db=" + db + " oldV=" + oldVersion + " newV=" + newVersion);
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pipe_stipple.c | 80 float *newv = dst->data[attr]; local 83 newv[i] = val0[i] + t * (val1[i] - val0[i]);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppProvider.java | 136 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { 138 if (newV == DB_VERSION_NOP_UPGRADE_TO) { // that's a no-op 148 + newV + ", which will destroy all old data");
|
/external/llvm/lib/Transforms/Utils/ |
ValueMapper.cpp | 350 if (Value *NewV = Materializer->materialize(const_cast<Value *>(V))) { 351 getVM()[V] = NewV; 352 return NewV; 961 Constant *NewV; 967 NewV [all...] |
/external/mesa3d/src/amd/vulkan/ |
radv_meta_resolve_cs.c | 160 nir_ssa_def *newv = nir_load_var(&b, color); local 165 store->src[2] = nir_src_for_ssa(newv);
|
/prebuilts/go/darwin-x86/test/ken/ |
chan.go | 66 func expect(v, v0 int) (newv int) {
|
/prebuilts/go/linux-x86/test/ken/ |
chan.go | 66 func expect(v, v0 int) (newv int) {
|
/external/clang/lib/StaticAnalyzer/Core/ |
ProgramState.cpp | 277 const llvm::APSInt &NewV = getBasicVals().Convert(T, *Int); 280 return loc::ConcreteInt(NewV); 282 return nonloc::ConcreteInt(NewV);
|