HomeSort by relevance Sort by last modified time
    Searched defs:result (Results 426 - 450 of 12433) sorted by null

<<11121314151617181920>>

  /external/elfutils/libelf/
elf_getphdrnum.c 85 int result = __elf_getphdrnum_rdlock (elf, dst); local
94 return result;
116 return result;
122 int result; local
134 result = __elf_getphdrnum_chk_rdlock (elf, dst);
137 return result;
gelf_getsymshndx.c 48 GElf_Sym *result = NULL; local
130 result = dst;
135 return result;
gelf_update_sym.c 46 int result = 0; local
107 result = 1;
115 return result;
  /external/elfutils/src/
sectionhash.c 33 int result = strcmp (one->name, two->name); local
35 if (result == 0)
37 result = one->type - two->type;
39 if (result == 0)
43 result = diff < 0 ? -1 : diff == 0 ? 0 : 1;
45 if (result == 0)
47 result = one->entsize - two->entsize;
49 if (result == 0)
51 result = (one->grp_signature == NULL
57 if (result == 0
    [all...]
  /external/elfutils/tests/
msg_tst.c 92 int result = EXIT_SUCCESS; local
106 result = EXIT_FAILURE;
110 return result;
test-nlist.c 47 int result = 0; local
79 result = 1;
82 return foo (result);
  /external/fio/exp/
test-expression-parser.c 33 long long result; local
43 rc = evaluate_arithmetic_expression(buffer, &result, &dresult, 1.0, 0);
45 printf("%lld (%20.20lf)\n", result, dresult);
48 result = 0;
  /external/google-breakpad/src/common/mac/
launch_reporter.cc 69 pid_t result = waitpid(pid, &status, WNOHANG); local
71 if (result == 0) {
74 } else if (result == -1) {
  /external/google-breakpad/src/testing/src/
gmock-matchers.cc 77 string result = "(" + fields[0]; local
79 result += ", ";
80 result += fields[i];
82 result += ")";
83 return result;
95 string result = ConvertIdentifierNameToWords(matcher_name); local
97 result += " " + JoinAsTuple(param_values);
98 return negation ? "not (" + result + ")" : result;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
MultiComparator.java 32 int result = comparators[i].compare(arg0, arg1); local
33 if (result == 0) {
36 if (result > 0) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RawCollationKey.java 95 int result = super.compareTo(rhs); local
96 return result < 0 ? -1 : result == 0 ? 0 : 1;
  /external/icu/icu4c/source/common/unicode/
normalizer2.h 195 UnicodeString result; local
196 normalize(src, result, errorCode);
197 return result;
219 * The result is normalized if the first string was normalized.
237 * The result is normalized if both the strings were normalized.
283 * in this case, the result contains either one or two code points (=1..4 UChars).
329 * resolves to "yes" or "no" to provide a definitive result,
344 * For the two COMPOSE modes, the result could be "maybe" in cases that
364 * will pass the quick check with a "yes" result.
484 * The result is normalized if the first string was normalized
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/
Rule.java 21 private String result; field in class:Rule
23 public void setResult(String result) {
24 this.result = result;
28 return result;
  /external/jcommander/src/test/java/com/beust/jcommander/
HostPortConverter.java 24 HostPort result = new HostPort(); local
26 result.host = s[0];
27 result.port = Integer.parseInt(s[1]);
29 return result;
  /external/libbrillo/brillo/message_loops/
message_loop_utils.cc 29 int result; local
30 for (result = 0; result < iterations && loop->RunOnce(false); result++) {}
31 return result;
  /external/libbrillo/brillo/
process_information.cc 15 std::string result; local
19 if (result.length()) {
20 result.append(" ");
22 result.append((*cmd_itr));
24 return result;
  /external/libcap/libcap/
cap_alloc.c 17 cap_t result; local
19 raw_data = malloc( sizeof(__u32) + sizeof(*result) );
28 result = (cap_t) (raw_data + 1);
29 memset(result, 0, sizeof(*result));
31 result->head.version = _LIBCAP_CAPABILITY_VERSION;
32 capget(&result->head, NULL); /* load the kernel-capability version */
34 switch (result->head.version) {
48 cap_free(result);
49 result = NULL
90 cap_t result; local
    [all...]
  /external/libcap/progs/
getpcaps.c 47 char *result = cap_to_text(cap_d, &length); local
48 fprintf(stderr, "Capabilities for `%s': %s\n", *argv, result);
49 cap_free(result);
50 result = NULL;
  /external/libchrome/base/debug/
task_annotator_unittest.cc 14 void TestTask(int* result) {
15 *result = 123;
21 int result = 0; local
22 PendingTask pending_task(FROM_HERE, Bind(&TestTask, &result));
26 EXPECT_EQ(0, result);
28 EXPECT_EQ(123, result);
  /external/libchrome/base/
task_runner_util.h 18 // Adapts a function that produces a result via a return value to
22 ReturnType* result) {
23 *result = func.Run();
26 // Adapts a T* result to a callblack that expects a T.
29 TaskReturnType* result) {
35 callback.Run(CallbackForward(*result));
43 // void Callback(const R& result);
46 // result of DoWorkAndReturn is passed to the Callback, you can use
60 TaskReturnType* result = new TaskReturnType(); local
64 result),
    [all...]
  /external/libchrome/crypto/
hmac.cc 19 bool result = key->GetRawKey(&raw_key) && Init(raw_key); local
23 return result;
  /external/libvncserver/webclients/novnc/include/
base64.js 17 var result = '';
24 result += toBase64Table[data[i] >> 2];
25 result += toBase64Table[((data[i] & 0x03) << 4) + (data[i + 1] >> 4)];
26 result += toBase64Table[((data[i + 1] & 0x0f) << 2) + (data[i + 2] >> 6)];
27 result += toBase64Table[data[i + 2] & 0x3f];
34 result += toBase64Table[data[j] >> 2];
35 result += toBase64Table[((data[j] & 0x03) << 4) + (data[j + 1] >> 4)];
36 result += toBase64Table[(data[j + 1] & 0x0f) << 2];
37 result += toBase64Table[64];
40 result += toBase64Table[data[j] >> 2]
68 var result, result_length; variable
    [all...]
  /external/libweave/third_party/libuweave/src/
crypto_hmac.c 41 bool result = HMAC_Final(&context, digest, &len) && kFullDigestLen == len; local
43 if (result) {
46 return result;
  /external/lzma/CPP/7zip/Common/
OffsetStream.cpp 30 HRESULT result = _stream->Seek(offset, seekOrigin, &absoluteNewPosition); local
33 return result;
  /external/mdnsresponder/mDNSPosix/
ExampleClientApp.c 54 int result; local
72 result = select(nfds, &readfds, NULL, NULL, &timeout);
74 if (result < 0)
76 verbosedebugf("select() returned %d errno %d", result, errno);

Completed in 1879 milliseconds

<<11121314151617181920>>