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

<<21222324252627282930>>

  /external/elfutils/libdw/
dwarf_getfuncs.c 112 int res = __libdw_visit_scopes (0, &chain, NULL, &tree_visitor, NULL, &v); local
114 if (res == DWARF_CB_ABORT)
117 return res;
  /external/google-breakpad/src/processor/
microdump_stackwalk.cc 90 ProcessResult res = microdump_processor.Process(microdump_content, local
93 if (res == google_breakpad::PROCESS_OK) {
102 BPLOG(ERROR) << "MicrodumpProcessor::Process failed (code = " << res << ")";
  /external/gptfdisk/
android_popt.cc 96 int res = getopt_long(con->argc, (char *const *) con->argv, "", local
99 fprintf(stderr, "getopt_long()=%c\n", res);
101 if (res == 0 || res == '?') {
115 return res;
119 const char *res = con->argv[optind++]; local
121 fprintf(stderr, "poptGetArg()=%s\n", res);
123 return res;
sgdisk.cc 38 stringstream res; local
53 res << "DISK mbr" << endl;
56 res << "PART " << (i + 1) << " " << hex
68 res << "DISK gpt " << gptData.GetDiskGUID() << endl;
73 res << "PART " << (i + 1) << " " << partData.GetType() << " "
85 string resString = res.str();
  /external/icu/icu4c/source/samples/legacy/
newcol.cpp 44 UCollationResult res = ucol_strcoll(compareCollator, (UChar *) string1, -1, (UChar *) string2, -1); local
45 if(res == UCOL_LESS) {
47 } else if(res == UCOL_GREATER) {
oldcol.cpp 45 UCollationResult res = ucol_strcoll(compareCollator, (UChar *) string1, -1, (UChar *) string2, -1); local
46 if(res == UCOL_LESS) {
48 } else if(res == UCOL_GREATER) {
  /external/iptables/extensions/
libxt_set.h 19 int res, sockfd = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); local
34 res = getsockopt(sockfd, SOL_IP, SO_IP_SET, &req_version, &size);
35 if (res != 0)
49 int res, sockfd; local
54 res = getsockopt(sockfd, SOL_IP, SO_IP_SET, &req, &size);
57 if (res != 0)
78 int res, sockfd; local
84 res = getsockopt(sockfd, SOL_IP, SO_IP_SET, &req, &size);
87 if (res != 0)
  /external/iw/
vendor.c 32 int i, res; local
39 res = sscanf(argv[i], "0x%x", &data);
40 if (res != 1 || data > 0xff)
55 int res, count = 0; local
61 res = sscanf(argv[0], "0x%x", &oui);
62 if (res != 1)
65 res = sscanf(argv[1], "0x%x", &subcmd);
66 if (res != 1)
  /external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
TestTarget.java 56 final String res = "/" + name.replace('.', '/') + ".class"; local
57 String loc = TestTarget.class.getResource(res).getFile();
62 return loc.substring(0, loc.length() - res.length());
  /external/jdiff/src/jdiff/
Modifiers.java 62 String res = ""; local
65 res += "Change from ";
67 res += "static to non-static.<br>";
69 res += "non-static to static.<br>";
74 res += " ";
75 res += "Change from ";
77 res += "final to non-final.<br>";
79 res += "non-final to final.<br>";
84 res += " ";
86 res += "Change from deprecated to undeprecated.<br>"
    [all...]
  /external/libchrome/base/strings/
sys_string_conversions_posix.cc 56 size_t res = src ? wcrtomb(buf, src, &ps) : 0; local
57 switch (res) {
67 num_out_chars += res;
84 size_t res = src ? wcrtomb(&out[j], src, &ps) : 0; local
85 switch (res) {
95 j += res;
112 size_t res = mbrtowc(NULL, src, native_mb.size() - i, &ps); local
113 switch (res) {
123 i += res;
141 size_t res = mbrtowc(dst, src, native_mb.size() - i, &ps) local
    [all...]
  /external/libchrome/base/
sys_info_posix.cc 48 long res = sysconf(_SC_NPROCESSORS_CONF); local
49 if (res == -1) {
54 return static_cast<int>(res);
  /external/libchrome/base/trace_event/
process_memory_totals_dump_provider.cc 74 bool res = process_metrics_->GetMemoryBytes(&private_bytes, local
76 if (res) {
  /external/libchrome/crypto/
rsa_private_key_openssl.cc 41 int res = export_fn(bio.get(), key); local
42 if (!res)
  /external/libchrome/sandbox/linux/bpf_dsl/
codegen.cc 70 auto res = memos_.insert(std::make_pair(MemoKey(code, k, jt, jf), kNullNode)); local
71 CodeGen::Node* node = &res.first->second;
72 if (res.second) { // Newly inserted memo entry.
135 Node res = program_.size(); local
138 equivalent_.push_back(res);
139 return res;
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
CondVar.cpp 46 int const res = pthread_cond_init (&mCondition, &attr); local
47 if (res)
49 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
65 int const res = pthread_cond_destroy (&mCondition); local
66 if (res)
68 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res);
84 int const res = pthread_cond_wait (&mCondition, mutex.nativeHandle()); local
85 if (res)
87 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
143 int const res = pthread_cond_signal (&mCondition) local
    [all...]
  /external/libopus/celt/arm/
fixed_armv5e.h 39 int res; local
43 : "=r"(res)
46 return res;
55 int res; local
59 : "=r"(res)
62 return res<<1;
74 int res; local
78 : "=r"(res)
81 return res;
90 int res; local
105 int res; local
    [all...]
  /external/libpcap/
fad-win32.c 51 int res = 0; local
91 res = add_addr_to_dev(curdev,
101 if (res == -1) {
109 return (res);
  /external/libunwind/src/coredump/
_UPT_get_dyn_info_list_addr.c 42 unw_word_t res; local
62 res = _Uia64_find_dyn_list (as, di, arg);
63 if (res && count++ == 0)
65 Debug (12, "dyn_info_list_addr = 0x%lx\n", (long) res);
66 *dil_addr = res;
  /external/libunwind/src/ptrace/
_UPT_get_dyn_info_list_addr.c 40 unw_word_t res; local
55 res = _Uia64_find_dyn_list (as, &ui->edi.di_cache, arg);
56 if (res && count++ == 0)
58 Debug (12, "dyn_info_list_addr = 0x%lx\n", (long) res);
59 *dil_addr = res;
  /external/libvpx/libvpx/examples/
postproc.c 64 vpx_codec_err_t res; local
89 res = vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL,
91 if (res == VPX_CODEC_INCAPABLE)
94 if (res)
  /external/libvpx/libvpx/test/
user_priv_test.cc 58 const vpx_codec_err_t res = local
61 if (res != VPX_CODEC_OK) {
62 EXPECT_EQ(VPX_CODEC_OK, res) << decoder.DecodeError();
  /external/libvpx/libvpx/vpx/src/
vpx_codec.c 84 vpx_codec_err_t res; local
87 res = VPX_CODEC_INVALID_PARAM;
89 res = VPX_CODEC_ERROR;
96 res = VPX_CODEC_OK;
99 return SAVE_STATUS(ctx, res);
111 vpx_codec_err_t res; local
114 res = VPX_CODEC_INVALID_PARAM;
116 res = VPX_CODEC_ERROR;
120 res = VPX_CODEC_ERROR;
127 res = entry->fn((vpx_codec_alg_priv_t *)ctx->priv, ap)
    [all...]
vpx_decoder.c 30 vpx_codec_err_t res; local
33 res = VPX_CODEC_ABI_MISMATCH;
35 res = VPX_CODEC_INVALID_PARAM;
37 res = VPX_CODEC_ABI_MISMATCH;
39 res = VPX_CODEC_INCAPABLE;
42 res = VPX_CODEC_INCAPABLE;
45 res = VPX_CODEC_INCAPABLE;
47 res = VPX_CODEC_INCAPABLE;
56 res = ctx->iface->init(ctx, NULL);
57 if (res) {
71 vpx_codec_err_t res; local
90 vpx_codec_err_t res; local
113 vpx_codec_err_t res; local
145 vpx_codec_err_t res; local
165 vpx_codec_err_t res; local
184 vpx_codec_err_t res; local
    [all...]
  /external/libxml2/python/tests/
reader2.py 88 res="" variable
98 res = res + "%s,%s\n" % (reader.NodeType(),reader.Name()) variable
100 if res != expect:
102 print(res)
132 res="" variable
148 res = res + "%s %s\n" % (reader.NodeType(),reader.Name())
150 if res != expect:
152 print(res)
192 res="" variable
202 res = res + "%s %s %d\\n" % (reader.NodeType(),reader.Name(),reader.Depth()) variable
237 res="" variable
244 res = res + "%s %s %d\\n" % (reader.NodeType(),reader.Name(),reader.Depth()) variable
    [all...]

Completed in 377 milliseconds

<<21222324252627282930>>