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

1 2 3 4 5 6 7 8 91011>>

  /device/google/contexthub/firmware/src/cpu/x86/
atomic.c 41 uint32_t atomicXchgByte(volatile uint8_t *byte, uint32_t newVal)
43 return __atomic_exchange_n(byte, newVal, __ATOMIC_ACQ_REL);
50 :"0"(newVal)
58 uint32_t atomicXchg32bits(volatile uint32_t *word, uint32_t newVal)
60 return __atomic_exchange_n(word, newVal, __ATOMIC_ACQ_REL);
67 :"0"(newVal)
75 bool atomicCmpXchgByte(volatile uint8_t *byte, uint32_t prevVal, uint32_t newVal)
77 return __sync_bool_compare_and_swap (byte, prevVal, newVal);
84 :"r"(newVal), "0"(prevVal)
92 bool atomicCmpXchg32bits(volatile uint32_t *word, uint32_t prevVal, uint32_t newVal)
    [all...]
  /external/clang/test/ARCMT/
autoreleases.m 33 -(void) setProp:(id) newVal {
35 _prop = [newVal retain];
37 -(void) setProp2:(CFTypeRef) newVal {
39 _prop = (id)CFRetain(newVal);
45 -(void) setXpc_prop:(xpc_object_t) newVal {
47 _xpc_prop = xpc_retain(newVal);
62 void test(A *prevVal, A *newVal) {
64 prevVal = [newVal retain];
autoreleases.m.result 33 -(void) setProp:(id) newVal {
34 _prop = newVal;
36 -(void) setProp2:(CFTypeRef) newVal {
37 _prop = (id)CFBridgingRelease(CFRetain(newVal));
43 -(void) setXpc_prop:(xpc_object_t) newVal {
44 _xpc_prop = newVal;
59 void test(A *prevVal, A *newVal) {
60 prevVal = newVal;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dhtmled.h 168 virtual HRESULT WINAPI put_Names(VARIANT *newVal) = 0;
181 HRESULT (WINAPI *put_Names)(IDEGetBlockFmtNamesParam *This,VARIANT *newVal);
196 #define IDEGetBlockFmtNamesParam_put_Names(This,newVal) (This)->lpVtbl->put_Names(This,newVal)
201 HRESULT WINAPI IDEGetBlockFmtNamesParam_put_Names_Proxy(IDEGetBlockFmtNamesParam *This,VARIANT *newVal);
222 virtual HRESULT WINAPI put_ActivateApplets(VARIANT_BOOL newVal) = 0;
224 virtual HRESULT WINAPI put_ActivateActiveXControls(VARIANT_BOOL newVal) = 0;
226 virtual HRESULT WINAPI put_ActivateDTCs(VARIANT_BOOL newVal) = 0;
228 virtual HRESULT WINAPI put_ShowDetails(VARIANT_BOOL newVal) = 0;
230 virtual HRESULT WINAPI put_ShowBorders(VARIANT_BOOL newVal) = 0
    [all...]
tsuserex.h 81 virtual HRESULT WINAPI put_AllowLogon(LONG NewVal) = 0;
83 virtual HRESULT WINAPI put_EnableRemoteControl(LONG NewVal) = 0;
85 virtual HRESULT WINAPI put_MaxDisconnectionTime(LONG NewVal) = 0;
87 virtual HRESULT WINAPI put_MaxConnectionTime(LONG NewVal) = 0;
89 virtual HRESULT WINAPI put_MaxIdleTime(LONG NewVal) = 0;
91 virtual HRESULT WINAPI put_ReconnectionAction(LONG NewVal) = 0;
93 virtual HRESULT WINAPI put_BrokenConnectionAction(LONG NewVal) = 0;
95 virtual HRESULT WINAPI put_ConnectClientDrivesAtLogon(LONG NewVal) = 0;
97 virtual HRESULT WINAPI put_ConnectClientPrintersAtLogon(LONG NewVal) = 0;
99 virtual HRESULT WINAPI put_DefaultToMainPrinter(LONG NewVal) = 0
    [all...]
msimcntl.h 165 virtual HRESULT WINAPI put_Service(short newVal) = 0;
168 virtual HRESULT WINAPI put_AutoLogon(VARIANT_BOOL newVal) = 0;
187 HRESULT (WINAPI *put_Service)(_IUseIMBase *This,short newVal);
190 HRESULT (WINAPI *put_AutoLogon)(_IUseIMBase *This,VARIANT_BOOL newVal);
211 #define _IUseIMBase_put_Service(This,newVal) (This)->lpVtbl->put_Service(This,newVal)
214 #define _IUseIMBase_put_AutoLogon(This,newVal) (This)->lpVtbl->put_AutoLogon(This,newVal)
226 HRESULT WINAPI _IUseIMBase_put_Service_Proxy(_IUseIMBase *This,short newVal);
232 HRESULT WINAPI _IUseIMBase_put_AutoLogon_Proxy(_IUseIMBase *This,VARIANT_BOOL newVal);
    [all...]
msptrmar.h 30 STDMETHOD(put_Balance)(__LONG32 newVal);
32 STDMETHOD(put_Volume)(__LONG32 newVal);
qedit.h 386 IUnknown *newVal) = 0;
395 LONG newVal) = 0;
410 BSTR newVal) = 0;
464 IUnknown *newVal);
476 LONG newVal);
496 BSTR newVal);
543 #define IMediaDet_put_Filter(This,newVal) (This)->lpVtbl->put_Filter(This,newVal)
546 #define IMediaDet_put_CurrentStream(This,newVal) (This)->lpVtbl->put_CurrentStream(This,newVal)
    [all...]
  /development/samples/SupportLeanbackShowcase/
build-release.py 8 # Does an inplace substitution of the pattern with newVal in inputFile
9 def replace(inputFile, pattern, newVal, ):
10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile)
15 line = re.sub(pattern, newVal, line)
23 file.write(newVal + "\n")
build-local.py 8 # Does an inplace substitution of the pattern with newVal in inputFile
9 def replace(inputFile, pattern, newVal, ):
10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile)
15 line = re.sub(pattern, newVal, line)
23 file.write(newVal + "\n")
  /device/google/contexthub/firmware/src/cpu/cortexm4f/
atomic.c 55 uint32_t atomicXchgByte(volatile uint8_t *byte, uint32_t newVal)
63 :"=r"(prevVal), "=r"(storeFailed), "=r"(newVal), "=r"(byte)
64 :"2"(newVal), "3"(byte)
72 uint32_t atomicXchg32bits(volatile uint32_t *word, uint32_t newVal)
80 :"=r"(prevVal), "=r"(storeFailed), "=r"(newVal), "=r"(word)
81 :"2"(newVal), "3"(word)
89 bool atomicCmpXchgByte(volatile uint8_t *byte, uint32_t prevVal, uint32_t newVal)
106 :"=r"(storeFailed), "=r"(newVal), "=r"(byte)
107 :"1"(newVal), "2"(byte)
115 bool atomicCmpXchg32bits(volatile uint32_t *word, uint32_t prevVal, uint32_t newVal)
    [all...]
  /external/llvm/test/CodeGen/PowerPC/
pr15630.ll 8 %newval = alloca i8
10 store i8 %newval_arg, i8* %newval
11 %tmp = load i8, i8* %newval
  /device/google/contexthub/firmware/inc/
atomic.h 29 uint32_t atomicXchgByte(volatile uint8_t *byte, uint32_t newVal);
30 uint32_t atomicXchg32bits(volatile uint32_t *word, uint32_t newVal);
31 bool atomicCmpXchgByte(volatile uint8_t *byte, uint32_t prevVal, uint32_t newVal);
32 bool atomicCmpXchg32bits(volatile uint32_t *word, uint32_t prevVal, uint32_t newVal);
  /external/llvm/test/CodeGen/AArch64/
bitfield-insert-0.ll 12 %newval = load volatile i32, 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]
bitfield-insert.ll 34 %newval = load volatile i32, i32* %new
35 %newval_shifted = shl i32 %newval, 26
53 %newval = load volatile i64, i64* %new
54 %newval_shifted = shl i64 %newval, 26
74 %newval = load volatile i64, i64* %new
75 %newval_masked = and i64 %newval, 65535 ; = 0xffff
92 %newval = load volatile i32, i32* %new
93 %newval_shifted = shl i32 %newval, 3
110 %newval = load volatile i64, i64* %new
111 %newval_shifted = shl i64 %newval, 4
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
LocaleObjectCache.java 39 V newVal = createObject(key);
40 if (key == null || newVal == null) {
45 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
51 value = newVal;
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
LocaleObjectCache.java 35 V newVal = createObject(key);
36 if (key == null || newVal == null) {
41 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
47 value = newVal;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleObjectCache.java 35 V newVal = createObject(key);
36 if (key == null || newVal == null) {
41 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
47 value = newVal;
  /toolchain/binutils/binutils-2.25/cpu/
sh.cpu 118 (set (newval) (sequence ()
119 (set (raw-reg h-ism) (and newval 1))
120 (set (raw-reg h-pc) (and newval (inv UDI 1)))))
135 (set (index newval)
137 (set (raw-reg h-gr index) newval)
149 (set (index newval)
150 (set (raw-reg h-gr index) (ext DI newval)))
165 (set (index newval)
167 (set (reg h-sr) newval)
168 (set (raw-reg h-cr index) 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...]
  /external/llvm/test/Transforms/AtomicExpand/ARM/
atomic-expansion-v7.ll 28 ; CHECK: [[NEWVAL:%.*]] = add i16 [[OLDVAL]], %addend
29 ; CHECK: [[NEWVAL32:%.*]] = zext i16 [[NEWVAL]] to i32
46 ; CHECK: [[NEWVAL:%.*]] = sub i32 [[OLDVAL]], %subend
47 ; CHECK: [[TRYAGAIN:%.*]] = call i32 @llvm.arm.strex.p0i32(i32 [[NEWVAL]], i32* %ptr)
64 ; CHECK: [[NEWVAL:%.*]] = and i8 [[OLDVAL]], %andend
65 ; CHECK: [[NEWVAL32:%.*]] = zext i8 [[NEWVAL]] to i32
84 ; CHECK: [[NEWVAL:%.*]] = xor i16 [[NEWVAL_TMP]], -1
85 ; CHECK: [[NEWVAL32:%.*]] = zext i16 [[NEWVAL]] to i32
109 ; CHECK: [[NEWVAL:%.*]] = or i64 [[OLDVAL]], %orend
110 ; CHECK: [[NEWLO:%.*]] = trunc i64 [[NEWVAL]] to i3
    [all...]
  /external/toybox/kconfig/
symbol.c 265 struct symbol_value newval, oldval; local
282 newval = symbol_empty.curr;
286 newval = symbol_no.curr;
299 sym->curr = newval;
306 newval.tri = (prop_get_symbol(prop)->curr.val == sym) ? yes : no;
310 newval.tri = sym->def[S_DEF_USER].tri;
314 newval.tri = expr_calc_value(prop->expr);
316 newval.tri = E_OR(E_AND(newval.tri, sym->visible), sym->rev_dep.tri);
321 newval.tri = expr_calc_value(prop->expr)
464 tristate oldval, newval; local
    [all...]
  /external/selinux/policycoreutils/sepolicy/
sepolicy.py 63 newval = getattr(namespace, self.dest)
64 if not newval:
65 newval = []
68 newval.append(v)
69 setattr(namespace, self.dest, newval)
76 newval = getattr(namespace, self.dest)
77 if not newval:
78 newval = []
84 newval.append(v)
85 setattr(namespace, self.dest, newval)
    [all...]
  /external/llvm/test/CodeGen/Mips/
micromips-atomic1.ll 21 define signext i8 @AtomicCmpSwap8(i8 signext %oldval, i8 signext %newval) nounwind {
23 %pair0 = cmpxchg i8* @y, i8 %oldval, i8 %newval monotonic monotonic

Completed in 5099 milliseconds

1 2 3 4 5 6 7 8 91011>>