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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
microsoft-abi-try-throw.cpp 16 int rv = 0; local
21 rv = 1;
32 return rv;
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;
  /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;
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
zfm20-register.cxx 73 uint8_t rv; local
83 if ((rv = fp->image2Tz(1)) != ZFM20::ERR_OK)
85 cerr << "Image conversion failed with error code " << int(rv) <<endl;
104 if ((rv = fp->image2Tz(2)) != ZFM20::ERR_OK)
106 cerr << "Image conversion failed with error code " << int(rv) <<endl;
116 if ((rv = fp->createModel()) != ZFM20::ERR_OK)
118 if (rv == ZFM20::ERR_FP_ENROLLMISMATCH)
121 cerr << "createModel failed with error code " << int(rv) <<endl;
127 if ((rv = fp->storeModel(1, 1)) != ZFM20::ERR_OK)
129 cerr << "storeModel failed with error code " << int(rv) <<endl
    [all...]
ublox6.cxx 75 int rv = nmea->readData(nmeaBuffer, bufferLength); local
77 if (rv > 0)
78 write(1, nmeaBuffer, rv);
80 if (rv < 0) // some sort of read error occured
zfm20.cxx 76 uint8_t rv; local
77 if ((rv = fp->image2Tz(1)) != ZFM20::ERR_OK)
79 cerr << "Image conversion failed with error code " << int(rv) <<endl;
91 if ((rv = fp->search(1, &id, &score)) != ZFM20::ERR_OK)
93 if (rv == ZFM20::ERR_FP_NOTFOUND)
100 cerr << "Search failed with error code " << int(rv) <<endl;
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
zfm20-register.js 69 var rv = myFingerprintSensor.image2Tz(1); variable
71 if (rv != fingerprint_lib.ZFM20.ERR_OK)
73 console.log("Image conversion failed with error code " + rv);
92 rv = myFingerprintSensor.image2Tz(2)
93 if (rv != fingerprint_lib.ZFM20.ERR_OK)
95 console.log("Image conversion failed with error code %d" + rv);
105 rv = myFingerprintSensor.createModel()
106 if (rv != fingerprint_lib.ZFM20.ERR_OK)
108 if (rv == fingerprint_lib.ZFM20.ERR_FP_ENROLLMISMATCH)
111 console.log("createModel failed with error code " + rv);
    [all...]
zfm20.js 51 var rv = myFingerprintSensor.image2Tz(1); variable
52 if (rv != fingerprint_lib.ZFM20.ERR_OK)
54 console.log("Image conversion failed with error code " + rv);
68 rv = myFingerprintSensor.search(1, myid, myscore)
69 if (rv != fingerprint_lib.ZFM20.ERR_OK)
71 if (rv == fingerprint_lib.ZFM20.ERR_FP_NOTFOUND)
78 console.log("Search failed with error code " + rv);
  /hardware/bsp/intel/peripheral/libupm/examples/python/
zfm20-register.py 84 rv = myFingerprintSensor.image2Tz(1) variable
86 if (rv != upmZfm20.ZFM20.ERR_OK):
87 print "Image conversion failed with error code %d" % rv
105 rv = myFingerprintSensor.image2Tz(2) variable
106 if (rv != upmZfm20.ZFM20.ERR_OK):
107 print "Image conversion failed with error code %d" % rv
116 rv = myFingerprintSensor.createModel() variable
117 if (rv != upmZfm20.ZFM20.ERR_OK):
118 if (rv == upmZfm20.ZFM20.ERR_FP_ENROLLMISMATCH):
121 print "createModel failed with error code %d" % rv
125 rv = myFingerprintSensor.storeModel(1, 1) variable
    [all...]
zfm20.py 65 rv = myFingerprintSensor.image2Tz(1) variable
66 if (rv != upmZfm20.ZFM20.ERR_OK):
67 print "Image conversion failed with error code %d" % rv
80 rv = myFingerprintSensor.search(1, myid, myscore) variable
81 if (rv != upmZfm20.ZFM20.ERR_OK):
82 if (rv == upmZfm20.ZFM20.ERR_FP_NOTFOUND):
86 print "Search failed with error code %d" % rv
  /external/v8/test/cctest/
test-api.h 14 v8::ReturnValue<v8::Value> rv = t.GetReturnValue(); local
15 i::Object** o = *reinterpret_cast<i::Object***>(&rv);
17 CHECK_EQ(t.GetIsolate(), rv.GetIsolate());
21 rv.Set(true);
23 rv.Set(v8::Local<v8::Object>());
  /external/clang/test/Sema/
ext_vector_comparisons.c 6 int4 vec, rv; local
21 float4 vec, rv; local
  /external/libchrome/crypto/third_party/nss/
secsign.cc 92 SECStatus rv = HASH_HashBuf( local
94 if (rv != SECSuccess)
95 return rv;
104 rv = PK11_Sign(key, &sig, &hash);
105 if (rv != SECSuccess)
106 return rv;
115 rv = SECOID_SetAlgorithmID(arena, &sd.signatureAlgorithm, algo_id, 0);
116 if (rv != SECSuccess)
117 return rv;
120 rv = DSAU_EncodeDerSigWithLen(&sd.signature, &sig, sig.len)
    [all...]
  /external/vboot_reference/firmware/lib20/
packed_key.c 34 int rv; local
37 rv = vb2_verify_packed_key_inside(buf, size, packed_key);
38 if (rv)
39 return rv;
  /hardware/bsp/intel/peripheral/libupm/examples/java/
ZFM20Sample.java 70 short rv = fp.image2Tz(1); local
71 if (rv != upm_zfm20.ZFM20.ZFM20_ERRORS_T.ERR_OK.swigValue()) {
72 System.err.println("Image conversion failed with error code " + rv);
81 rv = fp.search(1, id, score);
82 if (rv != upm_zfm20.ZFM20.ZFM20_ERRORS_T.ERR_OK.swigValue()) {
83 if (rv == upm_zfm20.ZFM20.ZFM20_ERRORS_T.ERR_FP_NOTFOUND.swigValue()) {
87 System.err.println("Search failed with error code " + rv);
  /frameworks/base/core/java/android/widget/
RemoteViewsListAdapter.java 53 for (RemoteViews rv: mRemoteViewsList) {
54 if (!mViewTypes.contains(rv.getLayoutId())) {
55 mViewTypes.add(rv.getLayoutId());
87 RemoteViews rv = mRemoteViewsList.get(position); local
88 rv.setIsWidgetCollectionChild(true);
90 if (convertView != null && rv != null &&
91 convertView.getId() == rv.getLayoutId()) {
93 rv.reapply(mContext, v);
95 v = rv.apply(mContext, parent);
  /cts/tests/tests/os/jni/
android_os_cts_SeccompTest.cpp 66 int rv = syscall(__NR_seccomp, SECCOMP_SET_MODE_FILTER, SECCOMP_FILTER_FLAG_TSYNC, &prog);
67 return rv == 0;
73 int rv = clock_gettime(CLOCK_BOOTTIME, &ts); local
74 return rv;
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetProvider.java 71 RemoteViews rv = new RemoteViews(context.getPackageName(), R.layout.widget_layout); local
72 rv.setRemoteAdapter(appWidgetIds[i], R.id.stack_view, intent);
76 rv.setEmptyView(R.id.stack_view, R.id.empty_view);
88 rv.setPendingIntentTemplate(R.id.stack_view, toastPendingIntent);
90 appWidgetManager.updateAppWidget(appWidgetIds[i], rv);
  /external/boringssl/src/crypto/cipher/
derive_key.c 76 int rv = 0; local
148 rv = type->key_len;
153 return rv;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Attributes.java 68 Attribute[] rv = new Attribute[attributes.size()]; local
70 for (int i = 0; i != rv.length; i++)
72 rv[i] = Attribute.getInstance(attributes.getObjectAt(i));
75 return rv;
  /external/curl/docs/examples/
cacertinmem.c 117 CURLcode rv; local
119 rv=curl_global_init(CURL_GLOBAL_ALL);
121 rv=curl_easy_setopt(ch,CURLOPT_VERBOSE, 0L);
122 rv=curl_easy_setopt(ch,CURLOPT_HEADER, 0L);
123 rv=curl_easy_setopt(ch,CURLOPT_NOPROGRESS, 1L);
124 rv=curl_easy_setopt(ch,CURLOPT_NOSIGNAL, 1L);
125 rv=curl_easy_setopt(ch,CURLOPT_WRITEFUNCTION, *writefunction);
126 rv=curl_easy_setopt(ch,CURLOPT_WRITEDATA, stdout);
127 rv=curl_easy_setopt(ch,CURLOPT_HEADERFUNCTION, *writefunction);
128 rv=curl_easy_setopt(ch,CURLOPT_HEADERDATA, stderr)
    [all...]
  /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/libchrome/crypto/
symmetric_key_openssl.cc 47 int rv = RAND_bytes(key_data, static_cast<int>(key_size_in_bytes)); local
48 return rv == 1 ? key.release() : NULL;
77 int rv = PKCS5_PBKDF2_HMAC_SHA1( local
81 return rv == 1 ? key.release() : NULL;
  /external/vboot_reference/firmware/2lib/
2secdata.c 45 int rv; local
47 rv = vb2_secdata_check_crc(ctx);
48 if (rv)
49 return rv;
56 rv = vb2_secdata_get(ctx, VB2_SECDATA_VERSIONS,
58 if (rv)
59 return rv;
  /external/vboot_reference/firmware/lib21/
packed_key.c 53 int rv; local
59 rv = vb2_verify_common_header(buf, size);
60 if (rv)
61 return rv;
64 rv = vb2_verify_common_member(pkey, &min_offset,
66 if (rv)
67 return rv;
87 rv = vb2_unpack_key_data(
91 if (rv)
92 return rv;
    [all...]

Completed in 876 milliseconds

1 2 3 4 5 6 7 8 91011>>