HomeSort by relevance Sort by last modified time
    Searched defs:Result (Results 1 - 25 of 2692) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
MultU64x32.c 27 generates a 64-bit unsigned result.
30 unsigned value Multiplier and generates a 64-bit unsigned result. This 64-
31 bit unsigned result is returned.
46 UINT64 Result;
48 Result = InternalMathMultU64x32 (Multiplicand, Multiplier);
50 return Result;
MultU64x64.c 27 generates a 64-bit unsigned result.
30 unsigned value Multiplier and generates a 64-bit unsigned result. This 64-
31 bit unsigned result is returned.
46 UINT64 Result;
48 Result = InternalMathMultU64x64 (Multiplicand, Multiplier);
50 return Result;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
MultU64x32.c 22 generates a 64-bit unsigned result.
25 unsigned value Multiplier and generates a 64-bit unsigned result. This 64-
26 bit unsigned result is returned.
41 UINT64 Result;
43 Result = InternalMathMultU64x32 (Multiplicand, Multiplier);
45 return Result;
MultU64x64.c 22 generates a 64-bit unsigned result.
25 unsigned value Multiplier and generates a 64-bit unsigned result. This 64-
26 bit unsigned result is returned.
41 UINT64 Result;
43 Result = InternalMathMultU64x64 (Multiplicand, Multiplier);
45 return Result;
  /external/llvm/lib/Support/
Program.cpp 38 ProcessInfo Result = Wait(
40 return Result.ReturnCode;
  /external/llvm/utils/not/
not.cpp 43 int Result = sys::ExecuteAndWait(*Program, argv, nullptr, nullptr, 0, 0,
50 if (ExpectCrash && Result == 3)
51 Result = -3;
53 if (Result < 0) {
63 return Result == 0;
  /external/swiftshader/third_party/LLVM/lib/Support/
SystemUtils.cpp 46 sys::Path Result = sys::Path::GetMainExecutable(Argv0, MainAddr);
47 Result.eraseComponent();
49 if (!Result.isEmpty()) {
50 Result.appendComponent(ExeName);
51 Result.appendSuffix(sys::Path::GetEXESuffix());
54 return Result;
  /external/swiftshader/third_party/LLVM/utils/not/
not.cpp 19 int Result = sys::Program::ExecuteAndWait(Program, argv + 1, 0, 0, 0, 0,
21 if (Result < 0) {
26 return Result == 0;
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Program.cpp 38 ProcessInfo Result = Wait(
40 return Result.ReturnCode;
  /prebuilts/go/darwin-x86/test/fixedbugs/issue5910.dir/
a.go 12 result chan struct {
18 func (t *Future) Result() (*Package, error) {
19 result := <-t.result
20 t.result <- result
21 return result.Package, result.error
  /prebuilts/go/linux-x86/test/fixedbugs/issue5910.dir/
a.go 12 result chan struct {
18 func (t *Future) Result() (*Package, error) {
19 result := <-t.result
20 t.result <- result
21 return result.Package, result.error
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
OsPath.c 239 CHAR8 *Result;
242 Result = (CHAR8 *) malloc (strlen (OldPath) + strlen (Peer) + 1);
243 if (Result == NULL) {
247 strcpy (Result, OldPath);
253 for (Offset = strlen (Result); Offset >= 0; Offset--) {
254 if ((Result[Offset] == '/') || (Result[Offset] == '\\')) {
255 Result[Offset + 1] = '\0';
256 strcat (Result, Peer);
257 return Result;
    [all...]
  /external/libese/third_party/NXPNFC_P61_JCOP_Kit/include/
AlaLib.h 88 int Result = 0;
94 Result = fscanf(stream, format, &dwVal);
98 return Result;
  /external/llvm/bindings/ocaml/bitwriter/
bitwriter_ocaml.c 26 int Result = LLVMWriteBitcodeToFile(M, String_val(Path));
27 return Val_bool(Result == 0);
33 int Result;
41 Result = LLVMWriteBitcodeToFD(M, Int_val(FD), 0, Unbuffered);
42 return Val_bool(Result == 0);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
VectorExtras.h 31 std::vector<T> Result;
32 Result.push_back(A);
34 Result.push_back(Val);
36 return Result;
  /prebuilts/go/darwin-x86/doc/progs/
timeout2.go 9 func (c Conn) DoQuery(query string) Result {
10 return Result("result")
13 type Result string
15 func Query(conns []Conn, query string) Result {
16 ch := make(chan Result, 1)
  /prebuilts/go/linux-x86/doc/progs/
timeout2.go 9 func (c Conn) DoQuery(query string) Result {
10 return Result("result")
13 type Result string
15 func Query(conns []Conn, query string) Result {
16 ch := make(chan Result, 1)
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Dependency/
Dependency.h 28 BOOLEAN Result;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/
GccInline.c 37 UINT32 Result;
43 : "=a" (Result), // %0
50 return Result;
74 UINT32 Result;
80 : "=a" (Result), // %0
87 return Result;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/X64/
GccInline.c 38 UINT32 Result;
44 : "=a" (Result), // %0
51 return Result;
74 UINT32 Result;
80 : "=a" (Result), // %0
87 return Result;
  /external/clang/tools/libclang/
CXSourceLocation.h 35 CXSourceLocation Result = { { &SM, &LangOpts, },
37 return Result;
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbolCompiland.cpp 30 std::string Result = RawSymbol->getSourceFileName();
31 if (!Result.empty())
32 return Result;
  /external/swiftshader/third_party/subzero/crosstest/
test_cast.cpp 94 double Result = 0;
95 Result += castBits<uint32_t, float>(0);
96 Result += castBits<uint64, double>(0);
97 Result += castBits<float, uint32_t>(0);
98 Result += castBits<double, uint64>(0);
99 Result += castBits<uint32_t, float>(1, 0, 2);
100 Result += castBits<uint64, double>(1, 0, 2);
101 Result += castBits<float, uint32_t>(1, 0, 2);
102 Result += castBits<double, uint64>(1, 0, 2);
103 return Result;
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug455.go 14 Result() bool
41 Result():
44 panic("Result returned false unexpectedly")
52 func (t *test_t) Result() bool {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug455.go 14 Result() bool
41 Result():
44 panic("Result returned false unexpectedly")
52 func (t *test_t) Result() bool {

Completed in 748 milliseconds

1 2 3 4 5 6 7 8 91011>>