HomeSort by relevance Sort by last modified time
    Searched refs:rv (Results 1 - 25 of 1095) 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 19 int rv = pthread_mutexattr_init(&mta); local
20 DCHECK_EQ(rv, 0) << ". " << strerror(rv);
21 rv = pthread_mutexattr_settype(&mta, PTHREAD_MUTEX_ERRORCHECK);
22 DCHECK_EQ(rv, 0) << ". " << strerror(rv);
23 rv = pthread_mutex_init(&native_handle_, &mta);
24 DCHECK_EQ(rv, 0) << ". " << strerror(rv);
25 rv = pthread_mutexattr_destroy(&mta)
34 int rv = pthread_mutex_destroy(&native_handle_); local
39 int rv = pthread_mutex_trylock(&native_handle_); local
45 int rv = pthread_mutex_lock(&native_handle_); local
50 int rv = pthread_mutex_unlock(&native_handle_); local
    [all...]
  /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;
  /external/libmojo/mojo/public/cpp/bindings/lib/
native_struct.cc 11 NativeStructPtr rv; local
12 internal::StructHelper<NativeStruct>::Initialize(&rv);
13 return rv;
21 NativeStructPtr rv(New());
22 rv->data = data.Clone();
23 return rv;
  /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/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/curl/docs/examples/
cacertinmem.c 111 CURLcode rv; local
113 rv=curl_global_init(CURL_GLOBAL_ALL);
115 rv=curl_easy_setopt(ch, CURLOPT_VERBOSE, 0L);
116 rv=curl_easy_setopt(ch, CURLOPT_HEADER, 0L);
117 rv=curl_easy_setopt(ch, CURLOPT_NOPROGRESS, 1L);
118 rv=curl_easy_setopt(ch, CURLOPT_NOSIGNAL, 1L);
119 rv=curl_easy_setopt(ch, CURLOPT_WRITEFUNCTION, *writefunction);
120 rv=curl_easy_setopt(ch, CURLOPT_WRITEDATA, stdout);
121 rv=curl_easy_setopt(ch, CURLOPT_HEADERFUNCTION, *writefunction);
122 rv=curl_easy_setopt(ch, CURLOPT_HEADERDATA, stderr)
    [all...]
usercertinmem.c 179 CURLcode rv; local
181 rv = curl_global_init(CURL_GLOBAL_ALL);
183 rv = curl_easy_setopt(ch, CURLOPT_VERBOSE, 0L);
184 rv = curl_easy_setopt(ch, CURLOPT_HEADER, 0L);
185 rv = curl_easy_setopt(ch, CURLOPT_NOPROGRESS, 1L);
186 rv = curl_easy_setopt(ch, CURLOPT_NOSIGNAL, 1L);
187 rv = curl_easy_setopt(ch, CURLOPT_WRITEFUNCTION, writefunction);
188 rv = curl_easy_setopt(ch, CURLOPT_WRITEDATA, stdout);
189 rv = curl_easy_setopt(ch, CURLOPT_HEADERFUNCTION, writefunction);
190 rv = curl_easy_setopt(ch, CURLOPT_HEADERDATA, stderr)
    [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;
  /prebuilts/clang/host/darwin-x86/clang-3016494/lib64/clang/3.8/include/
__clang_cuda_intrinsics.h 67 c2 rv = __nvvm_ldg_c2(reinterpret_cast<const c2 *>(ptr)); local
69 ret.x = rv[0];
70 ret.y = rv[1];
75 c4 rv = __nvvm_ldg_c4(reinterpret_cast<const c4 *>(ptr)); local
77 ret.x = rv[0];
78 ret.y = rv[1];
79 ret.z = rv[2];
80 ret.w = rv[3];
85 s2 rv = __nvvm_ldg_s2(reinterpret_cast<const s2 *>(ptr)); local
87 ret.x = rv[0]
93 s4 rv = __nvvm_ldg_s4(reinterpret_cast<const s4 *>(ptr)); local
103 i2 rv = __nvvm_ldg_i2(reinterpret_cast<const i2 *>(ptr)); local
111 i4 rv = __nvvm_ldg_i4(reinterpret_cast<const i4 *>(ptr)); local
121 ll2 rv = __nvvm_ldg_ll2(reinterpret_cast<const ll2 *>(ptr)); local
130 uc2 rv = __nvvm_ldg_uc2(reinterpret_cast<const uc2 *>(ptr)); local
138 uc4 rv = __nvvm_ldg_uc4(reinterpret_cast<const uc4 *>(ptr)); local
148 us2 rv = __nvvm_ldg_us2(reinterpret_cast<const us2 *>(ptr)); local
156 us4 rv = __nvvm_ldg_us4(reinterpret_cast<const us4 *>(ptr)); local
166 ui2 rv = __nvvm_ldg_ui2(reinterpret_cast<const ui2 *>(ptr)); local
174 ui4 rv = __nvvm_ldg_ui4(reinterpret_cast<const ui4 *>(ptr)); local
184 ull2 rv = __nvvm_ldg_ull2(reinterpret_cast<const ull2 *>(ptr)); local
193 f2 rv = __nvvm_ldg_f2(reinterpret_cast<const f2 *>(ptr)); local
201 f4 rv = __nvvm_ldg_f4(reinterpret_cast<const f4 *>(ptr)); local
211 d2 rv = __nvvm_ldg_d2(reinterpret_cast<const d2 *>(ptr)); local
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3016494/lib64/clang/3.8/include/
__clang_cuda_intrinsics.h 67 c2 rv = __nvvm_ldg_c2(reinterpret_cast<const c2 *>(ptr)); local
69 ret.x = rv[0];
70 ret.y = rv[1];
75 c4 rv = __nvvm_ldg_c4(reinterpret_cast<const c4 *>(ptr)); local
77 ret.x = rv[0];
78 ret.y = rv[1];
79 ret.z = rv[2];
80 ret.w = rv[3];
85 s2 rv = __nvvm_ldg_s2(reinterpret_cast<const s2 *>(ptr)); local
87 ret.x = rv[0]
93 s4 rv = __nvvm_ldg_s4(reinterpret_cast<const s4 *>(ptr)); local
103 i2 rv = __nvvm_ldg_i2(reinterpret_cast<const i2 *>(ptr)); local
111 i4 rv = __nvvm_ldg_i4(reinterpret_cast<const i4 *>(ptr)); local
121 ll2 rv = __nvvm_ldg_ll2(reinterpret_cast<const ll2 *>(ptr)); local
130 uc2 rv = __nvvm_ldg_uc2(reinterpret_cast<const uc2 *>(ptr)); local
138 uc4 rv = __nvvm_ldg_uc4(reinterpret_cast<const uc4 *>(ptr)); local
148 us2 rv = __nvvm_ldg_us2(reinterpret_cast<const us2 *>(ptr)); local
156 us4 rv = __nvvm_ldg_us4(reinterpret_cast<const us4 *>(ptr)); local
166 ui2 rv = __nvvm_ldg_ui2(reinterpret_cast<const ui2 *>(ptr)); local
174 ui4 rv = __nvvm_ldg_ui4(reinterpret_cast<const ui4 *>(ptr)); local
184 ull2 rv = __nvvm_ldg_ull2(reinterpret_cast<const ull2 *>(ptr)); local
193 f2 rv = __nvvm_ldg_f2(reinterpret_cast<const f2 *>(ptr)); local
201 f4 rv = __nvvm_ldg_f4(reinterpret_cast<const f4 *>(ptr)); local
211 d2 rv = __nvvm_ldg_d2(reinterpret_cast<const d2 *>(ptr)); local
    [all...]
  /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);

Completed in 643 milliseconds

1 2 3 4 5 6 7 8 91011>>