/external/compiler-rt/lib/builtins/ppc/ |
fixtfdi.c | 26 int64_t result = hibits.x & INT64_C(0x000fffffffffffff); /* mantissa(hi) */ local 27 result |= INT64_C(0x0010000000000000); /* matissa(hi) with implicit bit */ 28 result <<= 10; /* mantissa(hi) with one zero preceding bit. */ 54 result += tailMantissa; 57 result >>= (62 - unbiasedHeadExponent); 59 /* Restore the sign of the result and return */ 60 result = (result ^ hiNegationMask) - hiNegationMask; 61 return result; 67 /* |x| < 1, result is zero. * 74 int64_t result = INT64_MIN; local [all...] |
/external/compiler-rt/test/BlocksRuntime/ |
recursive-block.c | 40 voidVoid result = Block_copy(outer); local 42 return result;
|
/external/compiler-rt/test/builtins/Unit/ppc/ |
fixtfdi_test.c | 6 struct testVector { double xhi; double xlo; int64_t result; }; member in struct:testVector 463 expected_result = testCases[i].result;
|
/external/conscrypt/src/main/java/org/conscrypt/ |
X509PublicKey.java | 62 int result = 1; local 63 result = prime * result + ((algorithm == null) ? 0 : algorithm.hashCode()); 64 result = prime * result + Arrays.hashCode(encoded); 65 return result;
|
/external/curl/lib/ |
curl_ntlm.c | 69 CURLcode result = CURLE_OK; local 80 result = Curl_sasl_decode_ntlm_type2_message(conn->data, header, ntlm); 81 if(result) 82 return result; 102 return result; 112 CURLcode result; local 170 result = Curl_sasl_create_ntlm_type1_message(userp, passwdp, ntlm, &base64, 172 if(result) 173 return result; 190 result = Curl_sasl_create_ntlm_type3_message(conn->data, userp, passwdp [all...] |
gopher.c | 77 CURLcode result=CURLE_OK; local 119 result = Curl_write(conn, sockfd, sel, k, &amount); 120 if(!result) { /* Which may not have written it all! */ 121 result = Curl_client_write(conn, CLIENTWRITE_HEADER, sel, amount); 122 if(result) { 124 return result; 134 return result; 152 result = Curl_sendf(sockfd, conn, "\r\n"); 153 if(result) { 155 return result; [all...] |
http_chunks.c | 110 CURLcode result=CURLE_OK; local 123 result = Curl_client_write(conn, CLIENTWRITE_BODY, datap, datalen); 124 if(result) 153 result = Curl_convert_from_network(conn->data, ch->hexbuffer, 155 if(result) { 199 result = Curl_client_write(conn, CLIENTWRITE_BODY, datap, 202 result = CURLE_OK; 210 result = Curl_unencode_deflate_write(conn, &data->req, 217 result = Curl_unencode_gzip_write(conn, &data->req, 231 if(result) [all...] |
http_digest.c | 76 CURLcode result; local 155 result = Curl_sasl_create_digest_http_message(data, userp, passwdp, request, 158 if(result) 159 return result;
|
/external/curl/src/ |
tool_dirhie.c | 100 CURLcode result = CURLE_OK; local 134 result = CURLE_WRITE_ERROR; 145 return result;
|
tool_main.c | 127 * used, or havoc may be the result. 131 CURLcode result = CURLE_OK; local 146 result = curl_global_init(CURL_GLOBAL_DEFAULT); 147 if(!result) { 149 result = get_libcurl_info(); 151 if(!result) { 162 result = CURLE_FAILED_INIT; 178 result = CURLE_FAILED_INIT; 181 return result; 234 CURLcode result = CURLE_OK local [all...] |
/external/curl/tests/unit/ |
unit1307.c | 36 int result; member in struct:testcase 227 if(rc != tests[i].result) { 229 tests[i].pattern, tests[i].string, tests[i].result, rc);
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
StringLiteral.java | 31 StringBuilder result = new StringBuilder(); local 32 result.append('"'); 37 result.append("\\\""); 40 result.append("\\\\"); 43 result.append("\\b"); 46 result.append("\\t"); 49 result.append("\\n"); 52 result.append("\\f"); 55 result.append("\\r"); 59 new Formatter(result).format("\\u%04x", (int) c) [all...] |
/external/dagger2/core/src/main/java/dagger/internal/ |
DoubleCheckLazy.java | 40 @SuppressWarnings("unchecked") // cast only happens when result comes from the factory 44 Object result = instance; local 45 if (result == UNINITIALIZED) { 47 result = instance; 48 if (result == UNINITIALIZED) { 49 instance = result = provider.get(); 53 return (T) result;
|
ScopedProvider.java | 22 * A {@link Provider} implementation that memoizes the result of a {@link Factory} instance. 38 @SuppressWarnings("unchecked") // cast only happens when result comes from the factory 42 Object result = instance; local 43 if (result == UNINITIALIZED) { 45 result = instance; 46 if (result == UNINITIALIZED) { 47 instance = result = factory.get(); 51 return (T) result;
|
SetFactory.java | 45 * result. 111 Set<T> result = newLinkedHashSetWithExpectedSize(size); local 117 result.add(element); 120 return unmodifiableSet(result);
|
/external/dagger2/producers/src/main/java/dagger/producers/internal/ |
AbstractProducer.java | 31 * An abstract {@link Producer} implementation that memoizes the result of its compute method. 57 ListenableFuture<T> result = instance; local 58 if (result == null) { 60 result = instance; 61 if (result == null) { 63 instance = result = compute(monitor); 64 if (result == null) { 67 monitor.addCallbackTo(result); 71 return result;
|
/external/dagger2/producers/src/main/java/dagger/producers/monitoring/internal/ |
MonitorCache.java | 43 ProductionComponentMonitor result = monitor; local 44 if (result == null) { 46 result = monitor; 47 if (result == null) { 52 result = monitor = factory.create(componentProvider.get()); 55 result = monitor = Monitors.noOpProductionComponentMonitor(); 60 return result;
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkSpirVAsm.cpp | 92 const spv_result_t result = spvBinaryToText(context, binary, binarySizeInWords, 0, &text, &diagnostic); local 94 if (result != SPV_SUCCESS)
|
/external/deqp/modules/gles31/functional/ |
es31fTessellationTests.cpp | 104 string result; local 107 result += "(amount: " + de::toString(length) + ") "; 108 result += string() + "{" + (length > wrapLength ? "\n"+deepIndentation : " "); 115 result += string() + ", " + (index % wrapLength == 0 ? "\n"+deepIndentation : ""); 116 result += de::toString(*it); 120 result += length > wrapLength ? "\n"+baseIndentation : " "; 123 result += "}"; 124 return result; 148 vector<MembT> result(objs.size()); 150 result[i] = objs[i].*membP [all...] |
/external/deqp/modules/gles31/ |
tes31TestPackage.cpp | 76 const tcu::TestCase::IterateResult result = testCase->iterate(); local 82 return result;
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
RopToDop.java | 464 Dop result = MAP.get(rop); local 465 if (result != null) { 466 return result; 475 * have different source and/or result register types / lists. 480 * source or result will always be just "int").
|
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
ShortArrayCodeOutput.java | 51 short[] result = new short[cursor]; local 52 System.arraycopy(array, 0, result, 0, cursor); 53 return result;
|
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/ |
NameValuePair.java | 80 int result = name.compareTo(other.name); local 82 if (result != 0) { 83 return result;
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
Mutf8.java | 66 long result = 0; local 71 ++result; 73 result += 2; 75 result += 3; 77 if (shortLength && result > 65535) { 81 return result; 110 byte[] result = new byte[utfCount]; 111 encode(result, 0, s); 112 return result;
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
TypeList.java | 55 StringBuilder result = new StringBuilder(); local 58 result.append(", "); 60 result.append(types[i]); 62 return result.toString();
|