HomeSort by relevance Sort by last modified time
    Searched defs:result (Results 26 - 50 of 10822) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml 37 let result = ExecutionEngine.run_function the_function [||] var
41 print_float (GenericValue.as_float Codegen.double_type result);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toplevel.ml 37 let result = ExecutionEngine.run_function the_function [||] var
41 print_float (GenericValue.as_float Codegen.double_type result);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toplevel.ml 37 let result = ExecutionEngine.run_function the_function [||] var
41 print_float (GenericValue.as_float Codegen.double_type result);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mlockall/
13-1.c 21 int result; local
23 result = mlockall(0);
25 if (result == -1 && errno == EINVAL) {
28 } else if (result != -1) {
29 printf("mlockall() return %i instead of -1.\n", result);
13-2.c 21 int result; local
23 result = mlockall(~(MCL_CURRENT | MCL_FUTURE));
25 if (result == -1 && errno == EINVAL) {
28 } else if (result != -1) {
29 printf("mlockall() return %i instead of -1.\n", result);
8-1.c 20 int result; local
22 result = mlockall(MCL_CURRENT);
23 if (result == 0 && errno == 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_max/
1-1.c 21 int result = -1; local
23 result = sched_get_priority_max(SCHED_RR);
25 if (result != -1 && errno == 0) {
27 result);
1-2.c 21 int result = -1; local
23 result = sched_get_priority_max(SCHED_FIFO);
25 if (result != -1 && errno == 0) {
27 result);
1-3.c 24 int result = -1; local
26 result = sched_get_priority_max(SCHED_SPORADIC);
28 if (result != -1 && errno == 0) {
31 result);
1-4.c 21 int result = -1; local
23 result = sched_get_priority_max(SCHED_OTHER);
25 if (result != -1 && errno == 0) {
27 result);
2-1.c 20 int result = -1; local
22 result = sched_get_priority_max(-1);
24 if (result == -1 && errno == EINVAL) {
29 if (result != -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_min/
1-1.c 21 int result = -1; local
23 result = sched_get_priority_min(SCHED_RR);
25 if (result != -1 && errno == 0) {
27 result);
1-2.c 21 int result = -1; local
23 result = sched_get_priority_min(SCHED_FIFO);
25 if (result != -1 && errno == 0) {
27 result);
1-3.c 24 int result = -1; local
26 result = sched_get_priority_min(SCHED_SPORADIC);
28 if (result != -1 && errno == 0) {
31 result);
1-4.c 21 int result = -1; local
23 result = sched_get_priority_min(SCHED_OTHER);
25 if (result != -1 && errno == 0) {
27 result);
2-1.c 20 int result = -1; local
22 result = sched_get_priority_min(-1);
24 if (result == -1 && errno == EINVAL) {
29 if (result != -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getparam/speculative/
7-1.c 24 int result = -1; local
26 result = sched_getparam(0, NULL);
28 if (result == -1 && errno == EFAULT) {
33 if (result == -1 && errno == EINVAL) {
40 result, errno);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/
4-1.c 21 int result = -1; local
23 result = sched_getscheduler(0);
25 if (result != -1 && errno == 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_rr_get_interval/speculative/
5-1.c 25 int result = -2; local
27 result = sched_rr_get_interval(0, NULL);
29 if (result == -1 && errno == EFAULT) {
34 if (result == -1 && errno == EINVAL) {
41 result, errno);
  /external/lzma/CPP/7zip/Archive/Common/
OutStreamWithCRC.cpp 9 HRESULT result = S_OK; local
11 result = _stream->Write(data, size, &size);
17 return result;
  /external/skia/experimental/svg/model/
SkSVGAttribute.cpp 11 SkSVGPresentationAttributes result; local
13 result.fFill.set(SkSVGPaint(SkSVGColorType(SK_ColorBLACK)));
14 result.fFillOpacity.set(SkSVGNumberType(1));
15 result.fFillRule.set(SkSVGFillRule(SkSVGFillRule::Type::kNonZero));
16 result.fClipRule.set(SkSVGFillRule(SkSVGFillRule::Type::kNonZero));
18 result.fStroke.set(SkSVGPaint(SkSVGPaint::Type::kNone));
19 result.fStrokeDashArray.set(SkSVGDashArray(SkSVGDashArray::Type::kNone));
20 result.fStrokeDashOffset.set(SkSVGLength(0));
21 result.fStrokeLineCap.set(SkSVGLineCap(SkSVGLineCap::Type::kButt));
22 result.fStrokeLineJoin.set(SkSVGLineJoin(SkSVGLineJoin::Type::kMiter))
    [all...]
  /external/skia/tools/fiddle/
egl_context.cpp 28 sk_sp<GrContext> result = (*glContext)->makeGrContext(GrContextOptions()); local
29 if (!result) {
39 return result;
  /external/skqp/experimental/svg/model/
SkSVGAttribute.cpp 11 SkSVGPresentationAttributes result; local
13 result.fFill.set(SkSVGPaint(SkSVGColorType(SK_ColorBLACK)));
14 result.fFillOpacity.set(SkSVGNumberType(1));
15 result.fFillRule.set(SkSVGFillRule(SkSVGFillRule::Type::kNonZero));
16 result.fClipRule.set(SkSVGFillRule(SkSVGFillRule::Type::kNonZero));
18 result.fStroke.set(SkSVGPaint(SkSVGPaint::Type::kNone));
19 result.fStrokeDashArray.set(SkSVGDashArray(SkSVGDashArray::Type::kNone));
20 result.fStrokeDashOffset.set(SkSVGLength(0));
21 result.fStrokeLineCap.set(SkSVGLineCap(SkSVGLineCap::Type::kButt));
22 result.fStrokeLineJoin.set(SkSVGLineJoin(SkSVGLineJoin::Type::kMiter))
    [all...]
  /external/skqp/tools/fiddle/
egl_context.cpp 28 sk_sp<GrContext> result = (*glContext)->makeGrContext(GrContextOptions()); local
29 if (!result) {
39 return result;
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
toplevel.ml 37 let result = ExecutionEngine.run_function the_function [||] var
41 print_float (GenericValue.as_float Codegen.double_type result);

Completed in 1981 milliseconds

12 3 4 5 6 7 8 91011>>