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

1 2 3 4 56 7 8 91011>>

  /external/elfutils/libelf/
gelf_getshdr.c 43 GElf_Shdr *result = NULL; local
81 result = dst;
95 result = memcpy (dst, shdr, sizeof (GElf_Shdr));
101 return result;
gelf_getversym.c 46 GElf_Versym *result; local
74 result = NULL;
80 result = dst;
85 return result;
gelf_update_ehdr.c 43 int result = 0; local
112 result = 1;
117 return result;
gelf_update_lib.c 59 int result = 0; local
66 result = 1;
74 return result;
gelf_update_syminfo.c 46 int result = 0; local
74 result = 1;
82 return result;
  /external/epid-sdk/epid/common/src/
grouppubkey.c 26 EpidStatus result = kEpidErr; local
34 result = kEpidMemAllocErr;
37 result = NewEcPoint(G1, &pubkey->h1);
38 if (kEpidNoErr != result) {
41 result =
43 if (kEpidNoErr != result) {
46 result = NewEcPoint(G1, &pubkey->h2);
47 if (kEpidNoErr != result) {
50 result =
52 if (kEpidNoErr != result) {
    [all...]
  /external/freetype/src/base/
ftfntfmt.c 30 const char* result = NULL; local
34 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
36 return result;
45 const char* result = NULL; local
49 FT_FACE_FIND_SERVICE( face, result, FONT_FORMAT );
51 return result;
fttype1.c 58 FT_Int result = 0; local
67 result = service->ps_has_glyph_names( face );
70 return result;
110 FT_Int result = 0; local
119 result = service->ps_get_font_value( face, key, idx,
123 return result;
  /external/google-breakpad/src/testing/gtest/samples/
sample1.cc 38 int result = 1; local
40 result *= i;
43 return result;
  /external/googletest/googletest/samples/
sample1.cc 36 int result = 1; local
38 result *= i;
41 return result;
  /external/grpc-grpc/src/core/lib/gpr/
tmpfile_msys.cc 36 FILE* result = NULL; local
48 result = fopen(tmp_filename, "wb+");
49 fprintf(stderr, "result = %p\n", result);
51 if (result != NULL && tmp_filename_out) {
55 return result;
tmpfile_posix.cc 37 FILE* result = nullptr; local
52 result = fdopen(fd, "w+");
53 if (result == nullptr) {
62 if (result != nullptr && tmp_filename != nullptr) {
67 return result;
  /external/grpc-grpc/src/core/lib/security/credentials/google_default/
credentials_generic.cc 31 char* result = nullptr; local
38 gpr_asprintf(&result, "%s/%s", base, GRPC_GOOGLE_CREDENTIALS_PATH_SUFFIX);
40 return result;
  /external/icu/icu4c/source/common/
util.h 36 * @param result the digits of the number are appended here
43 * @return a reference to result
45 static UnicodeString& appendNumber(UnicodeString& result, int32_t n,
51 UnicodeString result; local
52 result.setToBogus();
53 return result;
70 static UBool escapeUnprintable(UnicodeString& result, UChar32 c);
  /external/junit-params/src/test/java/junitparams/
SamplesOfUsageVerificationTest.java 7 import org.junit.runner.Result;
15 Result result = JUnitCore.runClasses(SamplesOfUsageTest.class); local
17 assertEquals(0, result.getFailureCount());
20 assertEquals(5, result.getIgnoreCount());
  /external/libchrome/base/
task_runner_util.h 22 // void Callback(const R& result);
25 // result of DoWorkAndReturn is passed to the Callback, you can use
40 TaskReturnType* result = new TaskReturnType(); local
44 result),
46 std::move(reply), Owned(result)));
  /external/libcxx/test/std/re/re.regex/re.regex.construct/
bad_backref.pass.cpp 24 bool result = false; local
28 result = (ex.code() == std::regex_constants::error_backref);
30 return result;
bad_ctype.pass.cpp 24 bool result = false; local
28 result = (ex.code() == std::regex_constants::error_ctype);
30 return result;
bad_escape.pass.cpp 24 bool result = false; local
28 result = (ex.code() == std::regex_constants::error_escape);
30 return result;
bad_repeat.pass.cpp 24 bool result = false; local
28 result = (ex.code() == std::regex_constants::error_badrepeat);
30 return result;
  /external/libopus/silk/float/
energy_FLP.c 34 /* sum of squares of a silk_float array, with result as double */
41 double result; local
44 result = 0.0;
46 result += data[ i + 0 ] * (double)data[ i + 0 ] +
54 result += data[ i ] * (double)data[ i ];
57 silk_assert( result >= 0.0 );
58 return result;
inner_product_FLP.c 34 /* inner product of two silk_float arrays, with result as double */
42 double result; local
45 result = 0.0;
47 result += data1[ i + 0 ] * (double)data2[ i + 0 ] +
55 result += data1[ i ] * (double)data2[ i ];
58 return result;
  /external/libpng/contrib/examples/
pngtopng.c 30 int result = 1; local
59 result = 0;
96 return result;
  /external/libxcam/xcore/
x3a_result.cpp 2 * x3a_result.cpp - 3A calculation result
29 SmartPtr<X3aResult> &result = *i; local
30 XCAM_ASSERT (result.ptr ());
31 if (result->get_type () == type) {
  /external/libxml2/python/tests/
reader7.py 11 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 != expect
    [all...]

Completed in 3419 milliseconds

1 2 3 4 56 7 8 91011>>