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

<<11121314151617181920>>

  /external/aac/libFDK/include/mips/
fixmul_mips.h 103 INT result ; local
104 result = ((long long)a * b)>>32;
105 return result ;
  /external/aac/libFDK/include/x86/
clz_x86.h 98 INT result; local
101 result = __builtin_clz(value);
103 result = 32;
105 return result;
110 INT result; local
117 result = fixnormz_D(value);
118 return result - 1;
131 unsigned long result = 0; local
133 err = _BitScanReverse(&result, value);
135 return 31 - result;
143 INT result; local
    [all...]
  /external/android-clat/
dns64.c 43 struct addrinfo *result = NULL; local
49 status = android_getaddrinfofornet(ipv4_name, NULL, &hints, net_id, MARK_UNSET, &result);
50 if (status != 0 || result == NULL) {
56 // Use only the first result. If other records are present, possibly with
60 if (result->ai_family != AF_INET6) {
61 logmsg(ANDROID_LOG_WARN, "plat_prefix/unexpected address family: %d", result->ai_family);
64 plat_addr = ((struct sockaddr_in6 *)result->ai_addr)->sin6_addr;
67 freeaddrinfo(result);
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
importgl.c 45 int result = 1; local
51 if (procAddress == NULL) result = 0; \
89 return result;
  /external/bison/lib/
getdtablesize.c 33 int result; local
37 result = _setmaxstdio (newmax);
41 result = -1;
45 return result;
50 /* Cache for the previous getdtablesize () result. */
67 On Windows XP, the result is 2048.
  /external/bison/lib/glthread/
threadlib.c 43 static int result; /* 1: linked with -lpthread, 0: only with libc */ local
51 result = 0;
58 result = 1;
62 return result;
  /external/c-ares/
ares_writev.c 33 ssize_t result; local
72 result = swrite(s, buffer, bytes);
76 return (result);
  /external/clang/test/SemaCXX/
builtins-va_arg.cpp 16 int result = 0; local
27 result++;
32 result++;
43 return result;
49 int result = test_vprintf(fmt, ap); local
51 return result;
  /external/compiler-rt/lib/builtins/
floatditf.c 38 rep_t result; local
42 result = (rep_t)aAbs << shift ^ implicitBit;
45 result += (rep_t)(exponent + exponentBias) << significandBits;
47 return fromRep(result | sign);
floatsidf.c 41 rep_t result; local
47 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
50 result += (rep_t)(exponent + exponentBias) << significandBits;
52 return fromRep(result | sign);
floatsisf.c 41 rep_t result; local
46 result = (rep_t)a << shift ^ implicitBit;
49 result = (rep_t)a >> shift ^ implicitBit;
51 if (round > signBit) result++;
52 if (round == signBit) result += result & 1;
56 result += (rep_t)(exponent + exponentBias) << significandBits;
58 return fromRep(result | sign);
floatsitf.c 38 rep_t result; local
42 result = (rep_t)aAbs << shift ^ implicitBit;
45 result += (rep_t)(exponent + exponentBias) << significandBits;
47 return fromRep(result | sign);
floatunditf.c 29 rep_t result; local
33 result = (rep_t)a << shift ^ implicitBit;
36 result += (rep_t)(exponent + exponentBias) << significandBits;
37 return fromRep(result);
floatunsidf.c 33 rep_t result; local
37 result = (rep_t)a << shift ^ implicitBit;
40 result += (rep_t)(exponent + exponentBias) << significandBits;
41 return fromRep(result);
floatunsisf.c 33 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);
floatunsitf.c 29 rep_t result; local
33 result = (rep_t)a << shift ^ implicitBit;
36 result += (rep_t)(exponent + exponentBias) << significandBits;
37 return fromRep(result);
  /external/compiler-rt/lib/builtins/ppc/
floatditf.c 29 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/
interception_readdir_r_test.cc 26 struct dirent *result = (struct dirent *)(0xfeedbeef); local
34 if (readdir_r(d, (struct dirent *)entry_buffer, &result) != 0)
37 } while (result != NULL);
  /external/curl/lib/
hostasyn.c 74 CURLcode result = CURLE_OK; local
91 result = CURLE_OUT_OF_MEMORY;
98 result = CURLE_OUT_OF_MEMORY;
111 return result;
122 CURLcode result; local
129 result = Curl_setup_conn(conn, protocol_done);
131 if(result)
136 return result;
  /external/curl/tests/unit/
unit1304.c 49 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");
83 result = Curl_parsenetrc("test.example.com", &login, &password, filename);
84 fail_unless(result == 1, "Host should be found");
97 result = Curl_parsenetrc("example.com", &login, &password, filename);
98 fail_unless(result == 0, "Host should be found");
111 result = Curl_parsenetrc("example.com", &login, &password, filename)
    [all...]
  /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...]

Completed in 1021 milliseconds

<<11121314151617181920>>