HomeSort by relevance Sort by last modified time
    Searched refs:rv (Results 1 - 25 of 1255) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
mips-size_t-ptrdiff_t.cpp 9 long *rv = new long; // size_t is implicit in the new operator local
10 return rv;
22 long *rv = new long[2]; local
23 return rv;
microsoft-abi-try-throw.cpp 16 int rv = 0; local
21 rv = 1;
32 return rv;
  /external/libchrome/base/synchronization/
lock_impl_posix.cc 32 int rv = pthread_mutexattr_init(&mta); local
33 DCHECK_EQ(rv, 0) << ". " << strerror(rv);
36 rv = pthread_mutexattr_setprotocol(&mta, PTHREAD_PRIO_INHERIT);
37 DCHECK_EQ(rv, 0) << ". " << strerror(rv);
42 rv = pthread_mutexattr_settype(&mta, PTHREAD_MUTEX_ERRORCHECK);
43 DCHECK_EQ(rv, 0) << ". " << strerror(rv);
45 rv = pthread_mutex_init(&native_handle_, &mta)
52 int rv = pthread_mutex_destroy(&native_handle_); local
57 int rv = pthread_mutex_trylock(&native_handle_); local
64 int rv = pthread_mutex_lock(&native_handle_); local
69 int rv = pthread_mutex_unlock(&native_handle_); local
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
build_graph_options.cc 23 string rv = "Feed endpoints: "; local
25 strings::StrAppend(&rv, s, ", ");
27 strings::StrAppend(&rv, "\nFetch endpoints: ");
29 strings::StrAppend(&rv, s, ", ");
31 strings::StrAppend(&rv, "\nTarget nodes: ");
33 strings::StrAppend(&rv, s, ", ");
35 return rv;
  /external/syslinux/com32/lib/
fread.c 12 ssize_t rv; local
16 rv = read(fileno(f), p, count);
17 if (rv == -1) {
22 } else if (rv == 0) {
26 p += rv;
27 bytes += rv;
28 count -= rv;
fwrite.c 12 ssize_t rv; local
16 rv = write(fileno(f), p, count);
17 if (rv == -1) {
22 } else if (rv == 0) {
26 p += rv;
27 bytes += rv;
28 count -= rv;
vfprintf.c 14 int rv; local
17 rv = vsnprintf(buffer, BUFFER_SIZE, format, ap);
19 if (rv < 0)
20 return rv;
22 if (rv > BUFFER_SIZE - 1)
23 rv = BUFFER_SIZE - 1;
25 return _fwrite(buffer, rv, file);
printf.c 11 int rv; local
14 rv = vfprintf(stdout, format, ap);
16 return rv;
sscanf.c 10 int rv; local
13 rv = vsscanf(str, format, ap);
16 return rv;
exit.c 39 __noreturn exit(int rv)
44 ap->fctn(rv, ap->arg); /* This assumes extra args are harmless */
47 _exit(rv);
50 __noreturn _Exit(int rv)
52 _exit(rv);
55 __noreturn _exit(int rv)
57 longjmp(__syslinux_current->u.x.process_exit, (uint8_t)rv+1);
fprintf.c 11 int rv; local
14 rv = vfprintf(file, format, ap);
16 return rv;
snprintf.c 10 int rv; local
13 rv = vsnprintf(buffer, n, format, ap);
15 return rv;
sprintf.c 11 int rv; local
14 rv = vsnprintf(buffer, ~(size_t) 0, format, ap);
17 return rv;
bufprintf.c 9 int rv; local
12 rv = vsnprintf(NULL, 0, format, ap);
15 if (rv + buf->len >= buf->size) {
16 size_t newsize = rv + buf->len + BUFPAD;
21 rv = -1;
29 rv = vsnprintf(buf->buf + buf->len, buf->size - buf->len, format, ap2);
30 buf->len += rv;
33 return rv;
39 int rv; local
42 rv = vbufprintf(buf, format, ap)
    [all...]
  /external/vboot_reference/firmware/lib21/
misc.c 39 int rv; local
44 rv = vb2ex_read_resource(ctx, index, offset, &c, sizeof(c));
45 if (rv)
46 return rv;
54 rv = vb2ex_read_resource(ctx, index, offset, buf, c.total_size);
55 if (rv) {
57 return rv;
76 int rv; local
86 rv = vb2ex_read_resource(ctx, VB2_RES_GBB, sd->gbb_rootkey_offset,
88 if (rv)
165 int rv; local
    [all...]
  /external/vboot_reference/firmware/lib20/
misc.c 30 int rv; local
40 rv = vb2ex_read_resource(ctx, VB2_RES_GBB, sd->gbb_rootkey_offset,
42 if (rv)
43 return rv;
46 rv = vb2_unpack_key(&root_key, key_data, key_size);
47 if (rv)
48 return rv;
55 rv = vb2ex_read_resource(ctx, VB2_RES_FW_VBLOCK, 0, kb, sizeof(*kb));
56 if (rv)
57 return rv;
143 int rv; local
    [all...]
api.c 20 int rv; local
23 rv = vb2_load_fw_keyblock(ctx);
24 if (rv) {
25 vb2_fail(ctx, VB2_RECOVERY_RO_INVALID_RW, rv);
26 return rv;
30 rv = vb2_load_fw_preamble(ctx);
31 if (rv) {
32 vb2_fail(ctx, VB2_RECOVERY_RO_INVALID_RW, rv);
33 return rv;
46 int rv; local
136 int rv; local
    [all...]
  /external/syslinux/com32/lib/sys/
close.c 40 int rv = 0; local
48 rv = fp->iop->close(fp);
49 if (rv)
50 return rv;
55 rv = fp->oop->close(fp);
56 if (rv)
57 return rv;
  /external/curl/docs/examples/
cacertinmem.c 40 CURLcode rv = CURLE_ABORTED_BY_CALLBACK; local
105 rv = CURLE_OK;
108 if(rv != CURLE_OK) {
123 return rv;
129 CURLcode rv; local
131 rv = curl_global_init(CURL_GLOBAL_ALL);
133 rv = curl_easy_setopt(ch, CURLOPT_VERBOSE, 0L);
134 rv = curl_easy_setopt(ch, CURLOPT_HEADER, 0L);
135 rv = curl_easy_setopt(ch, CURLOPT_NOPROGRESS, 1L);
136 rv = curl_easy_setopt(ch, CURLOPT_NOSIGNAL, 1L)
    [all...]
usercertinmem.c 178 CURLcode rv; local
180 rv = curl_global_init(CURL_GLOBAL_ALL);
182 rv = curl_easy_setopt(ch, CURLOPT_VERBOSE, 0L);
183 rv = curl_easy_setopt(ch, CURLOPT_HEADER, 0L);
184 rv = curl_easy_setopt(ch, CURLOPT_NOPROGRESS, 1L);
185 rv = curl_easy_setopt(ch, CURLOPT_NOSIGNAL, 1L);
186 rv = curl_easy_setopt(ch, CURLOPT_WRITEFUNCTION, writefunction);
187 rv = curl_easy_setopt(ch, CURLOPT_WRITEDATA, stdout);
188 rv = curl_easy_setopt(ch, CURLOPT_HEADERFUNCTION, writefunction);
189 rv = curl_easy_setopt(ch, CURLOPT_HEADERDATA, stderr)
    [all...]
  /external/vboot_reference/tests/
vb20_verify_fw.c 95 int rv; local
101 rv = vb2api_init_hash(ctx, VB2_HASH_TAG_FW_BODY, &expect_size);
102 if (rv)
103 return rv;
119 rv = vb2api_extend_hash(ctx, block, size);
120 if (rv)
121 return rv;
127 rv = vb2api_check_hash(ctx);
128 if (rv)
129 return rv;
143 int rv; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.h 17 tran_high_t rv = ROUND_POWER_OF_TWO(input, DCT_CONST_BITS); local
20 // assert(INT16_MIN <= rv && rv <= INT16_MAX);
21 return rv;
  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.cpp 54 GenericValue rv; local
55 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
58 return rv;
67 GenericValue rv; local
68 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
70 return rv;
75 GenericValue rv; local
77 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
78 return rv;
86 GenericValue rv; local
    [all...]
  /external/syslinux/com32/menu/
drain.c 11 int rv; local
14 rv = read(0, (char *)&junk, 1);
15 } while (rv > 0);
  /external/libmojo/mojo/public/cpp/test_support/lib/
test_utils.cc 18 MojoResult rv = WriteMessageRaw(handle, local
24 return rv == MOJO_RESULT_OK;
28 MojoResult rv; local
33 rv = ReadMessageRaw(handle,
39 if (rv == MOJO_RESULT_SHOULD_WAIT) {
44 rv = Wait(handle, MOJO_HANDLE_SIGNAL_READABLE, MOJO_DEADLINE_INDEFINITE,
46 if (rv != MOJO_RESULT_OK)
56 rv = ReadMessageRaw(handle,
62 return rv == MOJO_RESULT_OK;
66 MojoResult rv = ReadMessageRaw(handle local
    [all...]

Completed in 318 milliseconds

1 2 3 4 5 6 7 8 91011>>