HomeSort by relevance Sort by last modified time
    Searched defs:res (Results 101 - 125 of 4293) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/curl/tests/libtest/
lib524.c 28 CURLcode res; local
46 res = curl_easy_perform(curl);
53 return (int)res;
lib542.c 37 CURLcode res = CURLE_OK; local
64 res = curl_easy_perform(curl);
71 return res;
lib549.c 33 CURLcode res; local
56 res = curl_easy_perform(curl);
63 return (int)res;
lib562.c 41 CURLcode res = CURLE_OK; local
65 res = curl_easy_perform(curl);
72 return res;
lib567.c 31 CURLcode res; local
58 res = curl_easy_perform(curl);
67 return (int)res;
lib574.c 35 int res; local
53 res = curl_easy_perform(curl);
54 if(res) {
55 fprintf(stderr, "curl_easy_perform() failed %d\n", res);
58 res = curl_easy_perform(curl);
59 if(res) {
60 fprintf(stderr, "curl_easy_perform() failed %d\n", res);
67 return res;
lib590.c 41 CURLcode res; local
62 res = curl_easy_perform(curl);
69 return (int)res;
lib598.c 28 CURLcode res; local
49 res = curl_easy_perform(curl);
50 if(res) {
61 res = curl_easy_perform(curl);
62 if(res)
70 return (int)res;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/includes/
db.php 9 $res = mysql_query($sql) or die("$sql\n" . mysql_error()); variable
10 return $res;
  /external/elfutils/lib/
xstrndup.c 41 char *res; local
43 *((char *) mempcpy ((res = xmalloc (len + 1)), string, len)) = '\0';
44 return res;
  /external/elfutils/libebl/
eblcorenotetypename.c 41 const char *res = ebl->core_note_type_name (type, buf, len); local
43 if (res == NULL)
69 res = knowntypes[type];
73 #define KNOWNSTYPE(name) case NT_##name: res = #name; break
100 res = buf;
104 return res;
eblobjnotetypename.c 44 const char *res = ebl->object_note_type_name (name, type, buf, len); local
46 if (res == NULL)
66 res = knowntypes[type];
71 res = buf;
75 return res;
eblsectionname.c 42 const char *res = ebl != NULL ? ebl->section_name (section, xsection, local
45 if (res == NULL)
48 res = "UNDEF";
50 res = "ABS";
52 res = "COMMON";
54 res = "BEFORE";
56 res = "AFTER";
63 res = scnnames[idx];
67 res = buf;
85 res = buf
    [all...]
eblsegmenttypename.c 41 const char *res; local
43 res = ebl != NULL ? ebl->segment_type_name (segment, buf, len) : NULL;
44 if (res == NULL)
61 res = ptypes[segment];
63 res = "GNU_EH_FRAME";
65 res = "GNU_STACK";
67 res = "GNU_RELRO";
69 res = "SUNWBSS";
71 res = "SUNWSTACK";
81 res = buf
    [all...]
eblsymbolbindingname.c 41 const char *res; local
43 res = ebl != NULL ? ebl->symbol_type_name (binding, buf, len) : NULL;
44 if (res == NULL)
53 res = stb_names[binding];
69 res = buf;
73 return res;
eblsymboltypename.c 41 const char *res; local
43 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL;
44 if (res == NULL)
59 res = stt_names[symbol];
75 res = buf;
79 return res;
  /external/fio/lib/
hweight.c 5 unsigned int res = w - ((w >> 1) & 0x55); local
7 res = (res & 0x33) + ((res >> 2) & 0x33);
8 return (res + (res >> 4)) & 0x0F;
13 unsigned int res = w - ((w >> 1) & 0x55555555); local
15 res = (res & 0x33333333) + ((res >> 2) & 0x33333333)
    [all...]
  /external/icu/icu4c/source/i18n/
tzrule.cpp 26 int32_t res = l < r ? -1 : (l == r ? 0 : 1); local
27 return res;
460 UBool res = TRUE;
463 res = FALSE;
467 return res;
508 UBool res = TRUE;
511 res = FALSE;
515 return res;
  /external/iproute2/tc/
p_icmp.c 30 int res = -1; local
40 res = parse_u8(&argc, &argv, 0);
45 res = parse_u8(&argc, &argv, 1);
54 return res;
p_tcp.c 29 int res = -1; local
30 return res;
p_udp.c 29 int res = -1; local
30 return res;
  /external/libopus/silk/arm/
SigProc_FIX_armv4.h 36 opus_int32 res; local
40 : "=&r"(res)
43 return res;
  /external/libxml2/python/tests/
xpathns.py 11 res="" variable
13 res = res + n.serialize() variable
16 if res != expect:
18 print(res)
19 del res
  /external/llvm/unittests/ADT/
TwineTest.cpp 19 std::string res; local
20 llvm::raw_string_ostream OS(res);
  /external/llvm/unittests/Support/
raw_ostream_test.cpp 20 std::string res; local
21 llvm::raw_string_ostream(res) << Value;
22 return res;
43 std::string res;
44 llvm::raw_string_ostream OS(res);
47 return res;

Completed in 278 milliseconds

1 2 3 45 6 7 8 91011>>