/external/tpm2/ |
HierarchyChangeAuth.c | 22 TPM_RC result; local 27 result = NvIsAvailable(); 28 if(result != TPM_RC_SUCCESS) return result;
|
IncrementalSelfTest.c | 23 TPM_RC result; local 29 result = CryptIncrementalSelfTest(&in->toTest, &out->toDoList); 30 if(result == TPM_RC_VALUE) 32 return result;
|
NV_GlobalWriteLock.c | 15 TPM_RC result; local 23 result = NvIsAvailable(); 24 if(result != TPM_RC_SUCCESS) 25 return result;
|
PCR_Allocate.c | 24 TPM_RC result; local 33 result = NvIsAvailable(); 34 if(result != TPM_RC_SUCCESS) 35 return result; 40 result = PCRAllocate(&in->pcrAllocation, &out->maxPCR, 42 if(result == TPM_RC_PCR) 43 return result; 46 out->allocationSuccess = (result == TPM_RC_SUCCESS);
|
PCR_Reset.c | 22 TPM_RC result; local 34 result = NvIsAvailable(); 35 if(result != TPM_RC_SUCCESS) 36 return result;
|
SetAlgorithmSet.c | 15 TPM_RC result; local 20 result = NvIsAvailable(); 21 if(result != TPM_RC_SUCCESS) return result;
|
SetPrimaryPolicy.c | 21 TPM_RC result; local 34 result = NvIsAvailable(); 35 if(result != TPM_RC_SUCCESS) 36 return result;
|
Shutdown.c | 22 TPM_RC result; local 27 result = NvIsAvailable(); 28 if(result != TPM_RC_SUCCESS) return result;
|
/external/v8/test/mjsunit/es6/ |
for-of.js | 6 var result = 0; 9 for (index of [1, 2, 3, 4, 5]) result += index; 11 assertEquals(result, 15); 18 var result = 0; variable 20 for (O.index of [1, 2, 3, 4, 5]) result += O.index; 22 assertEquals(result, 15);
|
/external/v8/test/mjsunit/regress/ |
regress-eval-cache.js | 13 var result = eval('eval("x")').toString(); 14 assertEquals("1", result); 17 var result = eval('eval("x")').toString(); variable 18 assertEquals("2", result);
|
/external/v8/test/webkit/ |
array-sort-small-sparse-array-with-large-length.js | 31 var result = ""; variable 34 if (result) 35 result += ","; 36 result += array[s]; 38 shouldBe("result", "\"42\"");
|
dfg-arguments-alias-one-block-osr-exit.js | 33 var result = ""; variable 42 result += foo(a, b, c); 45 shouldBe("result", "\"47101316192225283134374043464952555861646770737679828588919497100103106109112115118121124127130133136139142145148151154157160163166169172175178181184187190193196199202205208211214217220223226229232235238241244247250253256259262265268271274277280283286289292295298301304307310313316319322325328331334337340343346349352355358361364367370373376379382385388391394397400403406409412415418421424427430433436439442445448451454457460463466469472475478481484487490493496499502505508511514517520523526529532535538541544547550553556559562565568571574577580583586589592595598601hello201203hello202204hello203205hello204206hello205207hello206208hello207209hello208210hello209211hello210212hello211213hello212214hello213215hello214216hello215217hello216218hello217219hello218220hello219221hello220222hello221223hello222224hello223225hello224226hello225227hello226228hello227229hello228230hello229231hello230232hello231233hello232234hello233235hello234236hello235237hello236238hello237239hello238240hello239241hello240242hello241243hello242244hello243245hello244246hello245247hello246248hello247249hello248250hello249251hello250252hello251253hello252254hello253255hello254256hello255257hello256258hello257259hello258260hello259261hello260262hello261263hello262264hello263265hello264266hello265267hello266268hello267269hello268270hello269271hello270272hello271273hello272274hello273275hello274276hello275277hello276278hello277279hello278280hello279281hello280282hello281283hello282284hello283285hello284286hello285287hello286288hello287289hello288290hello289291hello290292hello291293hello292294hello293295hello294296hello295297hello296298hello297299hello298300hello299301hello300302\"");
|
dfg-arguments-alias-one-block-overwrite-arguments.js | 34 var result = ""; variable 43 result += foo(a, b, c); 45 shouldBe("result", "\"579111315171921232527293133353739414345474951535557596163656769717375777981838587899193959799101103105107109111113115117119121123125127129131133135137139141143145147149151153155157159161163165167169171173175177179181183185187189191193195197199201203205207209211213215217219221223225227229231233235237239241243245247249251253255257259261263265267269271273275277279281283285287289291293295297299301303305307309311313315317319321323325327329331333335337339341343345347349351353355357359361363365367369371373375377379381383385387389391393395397399401403hello2203hello2204hello2205hello2206hello2207hello2208hello2209hello2210hello2211hello2212hello2213hello2214hello2215hello2216hello2217hello2218hello2219hello2220hello2221hello2222hello2223hello2224hello2225hello2226hello2227hello2228hello2229hello2230hello2231hello2232hello2233hello2234hello2235hello2236hello2237hello2238hello2239hello2240hello2241hello2242hello2243hello2244hello2245hello2246hello2247hello2248hello2249hello2250hello2251hello2252hello2253hello2254hello2255hello2256hello2257hello2258hello2259hello2260hello2261hello2262hello2263hello2264hello2265hello2266hello2267hello2268hello2269hello2270hello2271hello2272hello2273hello2274hello2275hello2276hello2277hello2278hello2279hello2280hello2281hello2282hello2283hello2284hello2285hello2286hello2287hello2288hello2289hello2290hello2291hello2292hello2293hello2294hello2295hello2296hello2297hello2298hello2299hello2300hello2301hello2302\"");
|
dfg-arguments-alias-one-block-overwrite.js | 34 var result = ""; variable
|
dfg-uint32-to-number.js | 32 var result = 0; variable 34 result += foo({f:i + 0.5}, {f:2}); 37 shouldBe("result", "124500");
|
exception-with-handler-inside-eval-with-dynamic-scope.js | 25 var result; variable 29 eval("try { throw ''; } catch (e) { result = test; shouldBe('result', '\"inner scope\"'); }"); 30 result = null; 31 eval("try { with({test:'innermost scope'}) throw ''; } catch (e) { result = test; shouldBe('result', '\"inner scope\"'); }"); 32 result = null; 33 eval("with ({test:'innermost scope'}) try { throw ''; } catch (e) { result = test; shouldBe('result', '\"innermost scope\"'); }"); 34 result = null [all...] |
/external/v8/test/webkit/fast/js/ |
Promise-chained-then.js | 29 var result; variable 33 result = localResult; 34 shouldBeEqualToString('result', 'hello'); 41 result = localResult; 42 shouldBeEqualToString('result', 'hello2'); 50 result = localResult; 51 shouldBeEqualToString('result', 'error'); 58 result = localResult; 59 shouldBeEqualToString('result', 'error2'); 63 result = localResult [all...] |
Promise-exception.js | 29 var result; variable 33 }).then(function(result) { 40 result = localResult; 41 shouldBeEqualToString('result', 'foobar');
|
Promise-onFulfilled-deep.js | 28 var result; variable 37 result = value; 38 shouldBe('result', '5042'); 41 shouldBe('result', 'undefined');
|
Promise-onRejected-deep.js | 28 var result; variable 37 result = value; 38 shouldBe('result', '5042'); 41 shouldBe('result', 'undefined');
|
Promise-resolve-with-itself.js | 29 var result; variable 36 result = error.toString(); 37 shouldBeEqualToString('result', 'TypeError: Chaining cycle detected for promise #<Promise>');
|
Promise-resolve-with-then-exception.js | 29 var result; variable 38 result = localResult 39 shouldBeEqualToString('result', 'hello');
|
Promise-resolve.js | 29 var result; variable 36 result = localResult; 37 shouldBeEqualToString('result', 'hello');
|
/external/vboot_reference/tests/tpm_lite/ |
startup.c | 14 uint32_t result; local 16 result = TlclStartup(); 17 if (result != 0) { 18 printf("tpm startup failed with 0x%x\n", result); 20 result = TlclGetFlags(NULL, NULL, NULL); 21 if (result != 0) { 22 printf("tpm getflags failed with 0x%x\n", result); 26 result = TlclGetFlags(NULL, NULL, NULL); 27 if (result != 0) { 28 printf("tpm getflags failed with 0x%x\n", result); [all...] |
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ |
ARDMessageResponse.h | 22 @property(nonatomic, readonly) ARDMessageResultType result; variable
|