Searched defs:result (Results 201 - 225 of 4925) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/builtins/
H A Dfloatunditf.c29 rep_t result; local
33 result = (rep_t)a << shift ^ implicitBit;
36 result += (rep_t)(exponent + exponentBias) << significandBits;
37 return fromRep(result);
H A Dfloatunsidf.c33 rep_t result; local
37 result = (rep_t)a << shift ^ implicitBit;
40 result += (rep_t)(exponent + exponentBias) << significandBits;
41 return fromRep(result);
H A Dfloatunsisf.c33 rep_t result; local
38 result = (rep_t)a << shift ^ implicitBit;
41 result = (rep_t)a >> shift ^ implicitBit;
43 if (round > signBit) result++;
44 if (round == signBit) result += result & 1;
48 result += (rep_t)(exponent + exponentBias) << significandBits;
49 return fromRep(result);
H A Dfloatunsitf.c29 rep_t result; local
33 result = (rep_t)a << shift ^ implicitBit;
36 result += (rep_t)(exponent + exponentBias) << significandBits;
37 return fromRep(result);
H A Dlshrti3.c28 utwords result; local
32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
42 return result.all;
/external/compiler-rt/lib/builtins/ppc/
H A Dfloatditf.c29 DD result; local
31 result.s.hi = high_addend + low.d;
32 result.s.lo = (high_addend - result.s.hi) + low.d;
34 return result.ld;
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dinterception_readdir_r_test.cc26 struct dirent *result = (struct dirent *)(0xfeedbeef); local
34 if (readdir_r(d, (struct dirent *)entry_buffer, &result) != 0)
37 } while (result != NULL);
/external/curl/tests/unit/
H A Dunit1304.c49 int result; variable
57 result = Curl_parsenetrc("test.example.com", &login, &password, filename);
58 fail_unless(result == 1, "Host not found should return 1");
70 result = Curl_parsenetrc("example.com", &login, &password, filename);
71 fail_unless(result == 0, "Host should be found");
84 result = Curl_parsenetrc("test.example.com", &login, &password, filename);
85 fail_unless(result == 1, "Host should be found");
99 result = Curl_parsenetrc("example.com", &login, &password, filename);
100 fail_unless(result == 0, "Host should be found");
114 result
[all...]
/external/elfutils/libasm/
H A Dasm_newcomsym.c58 AsmSym_t *result; local
74 result = (AsmSym_t *) malloc (sizeof (AsmSym_t));
75 if (result == NULL)
78 result->scn = (AsmScn_t *) &__libasm_com_scn;
79 result->size = size;
81 result->type = STT_OBJECT;
83 result->binding = STB_GLOBAL;
84 result->symidx = 0;
85 result->strent = ebl_strtabadd (ctx->symbol_strtab, name, 0);
90 result
[all...]
H A Dasm_newscngrp.c47 AsmScnGrp_t *result; local
60 result = (AsmScnGrp_t *) malloc (sizeof (AsmScnGrp_t) + grpname_len);
61 if (result == NULL)
64 result->signature = signature;
65 result->members = NULL;
66 result->nmembers = 0;
67 result->flags = flags;
69 memcpy (result->name, grpname, grpname_len);
70 result->strent = ebl_strtabadd (ctx->section_strtab, result
[all...]
/external/elfutils/libdw/
H A Ddwarf_addrdie.c38 dwarf_addrdie (Dwarf *dbg, Dwarf_Addr addr, Dwarf_Die *result) argument
50 return INTUSE(dwarf_offdie) (dbg, off, result);
H A Ddwarf_attr_integrate.c38 Dwarf_Attribute *result)
44 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, search_name, result);
48 attr = INTUSE(dwarf_attr) (die, DW_AT_abstract_origin, result);
50 attr = INTUSE(dwarf_attr) (die, DW_AT_specification, result);
37 dwarf_attr_integrate(Dwarf_Die *die, unsigned int search_name, Dwarf_Attribute *result) argument
H A Ddwarf_begin.c46 Dwarf *result = NULL; local
88 result = INTUSE(dwarf_begin_elf) (elf, cmd, NULL);
91 if (result == NULL)
94 result->free_elf = true;
97 return result;
H A Ddwarf_getlocation_attr.c56 dwarf_getlocation_attr (Dwarf_Attribute *attr, const Dwarf_Op *op, Dwarf_Attribute *result) argument
64 result->code = DW_AT_const_value;
65 result->form = DW_FORM_block;
66 result->valp = (unsigned char *) (uintptr_t) op->number2;
67 result->cu = attr_form_cu (attr);
71 result->code = DW_AT_location;
72 result->form = DW_FORM_exprloc;
73 result->valp = (unsigned char *) (uintptr_t) op->number2;
74 result->cu = attr_form_cu (attr);
78 result
[all...]
H A Ddwarf_getstring.c52 const char *result = ((const char *) dbg->sectiondata[IDX_debug_str]->d_buf local
54 const char *endp = memchr (result, '\0',
60 *lenp = endp - result;
62 return result;
H A Ddwarf_peel_type.c39 dwarf_peel_type (Dwarf_Die *die, Dwarf_Die *result) argument
47 *result = *die;
48 tag = INTUSE (dwarf_tag) (result);
61 if (INTUSE (dwarf_formref_die) (attr, result) == NULL)
64 tag = INTUSE (dwarf_tag) (result);
/external/elfutils/libelf/
H A Delf_flagdata.c44 unsigned int result; local
58 result = (data_scn->s->flags |= (flags & ELF_F_DIRTY));
60 result = (data_scn->s->flags &= ~(flags & ELF_F_DIRTY));
67 return result;
H A Delf_getshdrnum.c45 int result = 0; local
69 return result;
75 int result; local
81 result = __elf_getshdrnum_rdlock (elf, dst);
84 return result;
H A Delf_getshdrstrndx.c48 int result = 0; local
75 result = -1;
97 result = -1;
123 result = -1;
143 result = -1;
158 result = -1;
184 result = -1;
204 result = -1;
215 /* Store the result. */
223 return result;
[all...]
H A Dgelf_getehdr.c46 GElf_Ehdr *result = NULL; local
88 result = dest;
91 result = memcpy (dest, elf->state.elf64.ehdr, sizeof (*dest));
93 return result;
99 GElf_Ehdr *result; local
104 result = __gelf_getehdr_rdlock (elf, dest);
107 return result;
H A Dgelf_getlib.c64 GElf_Lib *result = NULL; local
71 result = dst;
76 return result;
H A Dgelf_getmove.c44 GElf_Move *result = NULL; local
75 result = dst;
78 return result;
H A Dgelf_getshdr.c43 GElf_Shdr *result = NULL; local
81 result = dst;
95 result = memcpy (dst, shdr, sizeof (GElf_Shdr));
101 return result;
H A Dgelf_getversym.c46 GElf_Versym *result; local
74 result = NULL;
80 result = dst;
85 return result;
H A Dgelf_update_ehdr.c43 int result = 0; local
112 result = 1;
117 return result;

Completed in 307 milliseconds

1234567891011>>