/external/elfutils/libelf/ |
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/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/libchrome/base/process/ |
kill.cc | 14 bool result = true; local 18 result &= process.Terminate(exit_code, true); 20 return result;
|
/external/libcxx/test/std/re/re.regex/re.regex.construct/ |
bad_escape.pass.cpp | 22 bool result = false; local 26 result = (ex.code() == std::regex_constants::error_escape); 28 return result;
|
bad_repeat.pass.cpp | 22 bool result = false; local 26 result = (ex.code() == std::regex_constants::error_badrepeat); 28 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; 47 result += data[ i + 0 ] * (double)data[ i + 0 ] + 55 result += data[ i ] * (double)data[ i ]; 58 silk_assert( result >= 0.0 ); 59 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; 48 result += data1[ i + 0 ] * (double)data2[ i + 0 ] + 56 result += data1[ i ] * (double)data2[ i ]; 59 return result;
|
/external/libpng/contrib/examples/ |
pngtopng.c | 28 int result = 1; local 57 result = 0; 93 return result;
|
/external/libxml2/python/tests/ |
tstURI.py | 30 result=uri.saveUri() variable 31 if result != "https://example.org:223/foo/bar?query=simple":
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zSpecStream.cpp | 10 HRESULT result = _stream->Read(data, size, &realProcessedSize);
local 14 return result;
|
/external/lzma/CPP/7zip/Archive/Common/ |
InStreamWithCRC.cpp | 10 HRESULT result = S_OK;
local 12 result = _stream->Read(data, size, &realProcessed);
19 return result;
25 HRESULT result = S_OK;
local 27 result = _stream->Read(data, size, &realProcessed);
36 return result;
|
/external/lzma/CPP/7zip/Common/ |
LockedStream.cpp | 18 HRESULT result = _lockedInStream->Read(_pos, data, size, &realProcessedSize);
local 22 return result;
|
/external/lzma/CPP/7zip/UI/FileManager/ |
FormatUtils.cpp | 20 UString result = format;
local 21 result.Replace(L"{0}", argument);
22 return result;
|
/external/mesa3d/src/glsl/glcpp/tests/ |
067-nested-ifdef-ifndef.c | 4 #define result success macro 8 #undef result macro 9 #define result failure macro 12 result 16 #undef result macro 17 #define result failure macro 20 result 22 #undef result macro 23 #define result failure macro 26 #undef result macro 27 #define result macro 32 #undef result macro 33 #define result macro 36 #undef result macro 37 #define result macro [all...] |
/external/pdfium/fpdfsdk/src/javascript/ |
resource.cpp | 56 CFX_WideString result = CFX_WideString::FromLocal(class_name); local 58 result += L"."; 59 result += CFX_WideString::FromLocal(property_name); 61 result += L": "; 62 result += details; 63 return result;
|
/external/pdfium/third_party/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/protobuf/gtest/samples/ |
sample1.cc | 38 int result = 1; local 40 result *= i; 43 return result;
|
/external/skia/tests/ |
GrDrawTargetTest.cpp | 18 SkString result = context->caps()->dump(); local 19 SkASSERT(!result.isEmpty());
|
RTConfRegistryTest.cpp | 22 int result = 0; local 23 test_rt_conf_parse(®, "nonexistent.item", &result); 24 REPORTER_ASSERT(reporter, result == 132);
|
/external/tpm2/ |
Certify.c | 18 // modulus of signHandle, or the buffer for the result in signature is too 28 TPM_RC result; local 35 result = FillInAttestInfo(in->signHandle, 39 if(result != TPM_RC_SUCCESS) 41 if(result == TPM_RC_KEY) 44 return RcSafeAddToResult(result, RC_Certify_inScheme); 61 result = SignAttestInfo(in->signHandle, 70 pAssert(result != TPM_RC_ATTRIBUTES); 72 if(result != TPM_RC_SUCCESS) 73 return result; [all...] |
ChangePPS.c | 16 TPM_RC result; local 20 result = NvIsAvailable(); 21 if(result != TPM_RC_SUCCESS) return result;
|