Searched defs:result (Results 176 - 200 of 3072) sorted by relevance

1234567891011>>

/external/libpng/contrib/examples/
H A Dpngtopng.c26 int result = 1; local
55 result = 0;
91 return result;
/external/libunwind/src/mi/
H A D_ReadSLEB.c7 unw_word_t byte, result = 0; local
13 result |= (byte & 0x7f) << shift;
21 result |= ((unw_word_t) -1) << shift;
24 return result;
H A D_ReadULEB.c7 unw_word_t byte, result = 0; local
13 result |= (byte & 0x7f) << shift;
19 return result;
/external/libxml2/python/tests/
H A Dreader7.py11 result = "" variable
13 global result
15 result = result + "%d %d %s %d\n" % (reader.Depth(), reader.NodeType(),
37 result = "" variable
49 if result != expect:
50 print("Unexpected result for test1")
51 print(result)
73 result = "" variable
85 if result !
[all...]
H A Dwalker.py11 result = "" variable
13 global result
15 result = result + "%d %d %s %d\n" % (reader.Depth(), reader.NodeType(),
37 result = "" variable
50 if result != expect:
51 print("Unexpected result for test1")
52 print(result)
76 result = "" variable
90 if result !
116 result = "" variable
[all...]
/external/lldb/source/Commands/
H A DCommandObjectVersion.cpp39 CommandObjectVersion::DoExecute (Args& args, CommandReturnObject &result) argument
43 result.AppendMessageWithFormat ("%s\n", lldb_private::GetVersion());
44 result.SetStatus (eReturnStatusSuccessFinishResult);
48 result.AppendError("the version command takes no arguments.");
49 result.SetStatus (eReturnStatusFailed);
/external/lldb/test/functionalities/archives/
H A Da.c12 int result = arg + __a_global; local
13 return result; // Set file and line breakpoint inside a().
H A Db.c12 int result = arg + __b_global; local
13 return result;
/external/lzma/CPP/7zip/Archive/Common/
H A DDummyOutStream.cpp10 HRESULT result; local
14 result = S_OK;
17 result = _stream->Write(data, size, &realProcessedSize);
21 return result;
/external/lzma/CPP/7zip/Common/
H A DLockedStream.cpp18 HRESULT result = _lockedInStream->Read(_pos, data, size, &realProcessedSize); local
22 return result;
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Dunit_test.c12 memset(&tests[i].result, 0, sizeof(tests[i].result));
13 tests[i].test_func(&tests[i].result);
15 tests[i].result.pass, tests[i].result.test_count);
19 void test_begin(struct test_result * result) argument
21 result->test_count++;
24 void test_check(struct test_result * result, int cond) argument
26 printf("Subtest %u -> ", result->test_count);
28 result
[all...]
/external/parameter-framework/utility/
H A Dconvert.hpp60 static inline bool convertTo(const std::string &str, T &result) argument
64 * with this type, thus that the result is undefined. */
85 ss >> std::hex >> result; local
92 ss >> result; local
111 * @param[out] result reference to object where to store the result.
116 static inline bool convertTo(const std::string &str, T &result) argument
118 return details::convertTo<T>(str, result);
131 * @param[out] result reference to object where to store the result
136 convertTo(const std::string &str, int16_t &result) argument
168 convertTo(const std::string &str, float &result) argument
198 convertTo(const std::string &str, double &result) argument
230 convertTo(const std::string &str, bool &result) argument
[all...]
/external/skia/src/animator/
H A DSkDisplayBounds.cpp31 bool result = INHERITED::draw(maker); local
42 return result;
/external/skia/src/pathops/
H A DSkPathOpsTightBounds.cpp10 bool TightBounds(const SkPath& path, SkRect* result) { argument
21 result->setEmpty();
29 *result = bounds;
/external/skia/tests/
H A DGrDrawTargetTest.cpp19 SkString result = caps->dump(); local
20 SkASSERT(!result.isEmpty());
H A DRTConfRegistryTest.cpp29 int result = 0; local
30 test_rt_conf_parse(&reg, "nonexistent.item", &result);
31 REPORTER_ASSERT(reporter, result == 132);
/external/v8/src/
H A Dmisc-intrinsics.h30 unsigned long result; // NOLINT: MSVC intrinsic demands this type. local
31 _BitScanReverse(&result, value);
32 return result;
40 int result, shift; local
44 result = shift;
48 result |= shift;
52 result |= shift;
56 result |= shift;
58 result |= (value >> 1);
60 return result;
[all...]
H A Dtype-feedback-vector.cc16 Handle<TypeFeedbackVector> result; local
17 result = Handle<TypeFeedbackVector>::cast(
19 return result;
/external/v8/test/mjsunit/
H A Ddebug-liveedit-breakpoints.js77 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log); variable
78 print("Result: " + JSON.stringify(result) + "\n");
/external/v8/test/webkit/
H A Ddfg-dead-min-one-arg.js42 var result = eval(empty + "foo(x)"); variable
45 shouldBe("result", "" + expected);
/external/valgrind/drd/tests/
H A Dpth_create_glibc_2_0.c27 int result; local
30 result = (*pthread_create_glibc_2_0)(&thr, 0, thread_func, 0);
31 if (result != 0)
/external/vboot_reference/firmware/lib/
H A Dutility.c15 int result = 0; local
25 result |= *us1++ ^ *us2++;
27 return result != 0;
/external/vboot_reference/tests/tpm_lite/
H A Dtpmtest_testsetup.c19 uint32_t result; local
31 result = TlclRead(INDEX0, (uint8_t*) &x, sizeof(x));
32 if (result == TPM_E_BADINDEX) {
37 result = TlclRead(INDEX1, (uint8_t*) &x, sizeof(x));
38 if (result == TPM_E_BADINDEX) {
H A Dtpmtest_writelimit.c22 uint32_t result; local
35 if ((result = TlclWrite(INDEX0, (uint8_t*)&i, sizeof(i))) != TPM_SUCCESS) {
36 switch (result) {
41 VbExError("unexpected error code %d (0x%x)\n", result, result);
/external/vboot_reference/utility/
H A Dtpm_init_temp_fix.c27 uint32_t result; local
32 TlclStartup(); /* ignore result */
39 result = TlclGetFlags(NULL, NULL, NULL);
41 result = TlclSelfTestFull();
42 if (result != 0) {
43 syslog(pri, "TPM selftest failed with code 0x%x\n", result);
49 result = TlclAssertPhysicalPresence();
50 if (result != 0) {
51 syslog(pri, "TPM assertpp failed with code 0x%x\n", result);
55 result
[all...]

Completed in 484 milliseconds

1234567891011>>