/external/elfutils/libasm/ |
asm_align.c | 77 int result = 0; local 86 result = __libasm_ensure_section_space (asmscn, cnt); 87 if (result != 0) 128 return result;
|
asm_error.c | 48 int result = global_error; local 50 return result;
|
/external/elfutils/libdw/ |
dwarf_getscopes_die.c | 70 int result = __libdw_visit_scopes (1, &cu, NULL, &scope_visitor, NULL, &info); local 71 if (result > 0) 73 return result;
|
libdw_alloc.c | 51 uintptr_t result = ((uintptr_t) newp->mem + align - 1) & ~(align - 1); local 54 newp->remaining = (uintptr_t) newp + size - (result + minsize); 59 return (void *) result;
|
libdw_form.c | 48 size_t result; local 55 result = cu->address_size; 59 result = cu->version == 2 ? cu->address_size : cu->offset_size; 66 result = cu->offset_size; 72 result = *valp + 1; 78 result = read_2ubyte_unaligned (cu->dbg, valp) + 2; 84 result = read_4ubyte_unaligned (cu->dbg, valp) + 4; 90 result = u128 + (valp - startp); 99 result = (size_t) (endstrp - startp) + 1; 107 result = valp - startp [all...] |
/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...] |