HomeSort by relevance Sort by last modified time
    Searched refs:rl (Results 26 - 50 of 146) sorted by null

12 3 4 5 6

  /art/compiler/dex/quick/
ralloc_util.cc 523 void Mir2Lir::MarkDef(RegLocation rl, LIR *start, LIR *finish) {
524 DCHECK(!rl.wide);
527 RegisterInfo* p = GetRegInfo(rl.low_reg);
537 void Mir2Lir::MarkDefWide(RegLocation rl, LIR *start, LIR *finish) {
538 DCHECK(rl.wide);
541 RegisterInfo* p = GetRegInfo(rl.low_reg);
542 ResetDef(rl.high_reg); // Only track low of pair
547 RegLocation Mir2Lir::WideToNarrow(RegLocation rl) {
548 DCHECK(rl.wide);
549 if (rl.location == kLocPhysReg)
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_server_i.h 22 struct tlsv1_record_layer rl; member in struct:tlsv1_server
tlsv1_client_i.h 21 struct tlsv1_record_layer rl; member in struct:tlsv1_client
tlsv1_server_read.c 95 conn->rl.tls_version = TLS_VERSION_1;
98 conn->rl.tls_version = TLS_VERSION_1_2;
101 conn->rl.tls_version = TLS_VERSION_1_1;
103 conn->rl.tls_version = conn->client_version;
105 tls_version_str(conn->rl.tls_version));
159 if (tlsv1_record_set_cipher_suite(&conn->rl, cipher_suite) < 0) {
744 suite = tls_get_cipher_suite(conn->rl.cipher_suite);
844 if (conn->rl.tls_version == TLS_VERSION_1_2) {
958 if (conn->rl.tls_version >= TLS_VERSION_1_2) {
1046 if (tlsv1_record_change_read_cipher(&conn->rl) < 0)
    [all...]
tlsv1_client_read.c 90 conn->rl.tls_version = tls_version;
146 if (tlsv1_record_set_cipher_suite(&conn->rl, cipher_suite) < 0) {
536 if (!tls_server_key_exchange_allowed(conn->rl.cipher_suite)) {
545 suite = tls_get_cipher_suite(conn->rl.cipher_suite);
743 if (tlsv1_record_change_read_cipher(&conn->rl) < 0) {
821 if (conn->rl.tls_version >= TLS_VERSION_1_2) {
862 if (tls_prf(conn->rl.tls_version,
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.h 43 #define scard_umts_auth(s, r, a, r2, rl, i, c, a2) -1
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
NavCalculator.java 77 RLSailing rl = mercatorSailing(p1, p2); local
78 return rl;
91 RLSailing rl = planeSailing(p1, p2); local
92 return rl;
102 RLSailing rl = new RLSailing(degCrs, (float) distance); local
103 trueCourse = rl.getCourse();
107 return rl;
  /ndk/tests/build/b9193874-neon/jni/
b9193874-neon.c 268 int32x4_t rl = vaddl_s16(vget_low_s16(yy), vget_low_s16(vr)); local
274 rl = vmulq_lane_s32(rl, cf32, 0);
280 y = vqmovun_s16(vcombine_s16(vrshrn_n_s32(rl, 16), vrshrn_n_s32(rh, 16)));
316 int32x4_t rl = vaddl_s16(vget_low_s16(yy), vget_low_s16(vr)); local
322 rl = vmulq_lane_s32(rl, cf32, 0);
328 y = vqmovun_s16(vcombine_s16(vrshrn_n_s32(rl, 16), vrshrn_n_s32(rh, 16)));
  /external/chromium/third_party/libevent/
devpoll.c 130 struct rlimit rl; local
140 if (getrlimit(RLIMIT_NOFILE, &rl) == 0 &&
141 rl.rlim_cur != RLIM_INFINITY)
142 nfiles = rl.rlim_cur;
  /external/chromium_org/third_party/libevent/
devpoll.c 130 struct rlimit rl; local
140 if (getrlimit(RLIMIT_NOFILE, &rl) == 0 &&
141 rl.rlim_cur != RLIM_INFINITY)
142 nfiles = rl.rlim_cur;
  /external/qemu/
qemu-common.h 376 uint64_t rl, rh; local
379 rl = (uint64_t)u.l.low * (uint64_t)b;
381 rh += (rl >> 32);
383 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
  /system/core/include/pixelflinger/
format.h 112 uint8_t rl; // red low bit position member in struct:__anon63507::__anon63509::__anon63510
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
asn1_lib.c 65 static int asn1_get_length(const unsigned char **pp,int *inf,long *rl,int max);
154 static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max)
189 *rl=(long)ret;
  /external/guava/guava/src/com/google/common/collect/
BstCountBasedBalancePolicies.java 100 N rl = right.childOrNull(LEFT);
102 if (countAggregate.treeValue(rl) >= SECOND_ROTATE_RATIO * countAggregate.treeValue(rr)) {
103 right = singleR(nodeFactory, right, rl, rr);
  /external/openssl/crypto/asn1/
asn1_lib.c 65 static int asn1_get_length(const unsigned char **pp,int *inf,long *rl,int max);
154 static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max)
189 *rl=(long)ret;
  /art/runtime/native/
dalvik_system_Zygote.cc 198 rlimit rl; local
199 rl.rlim_cur = 0;
200 rl.rlim_max = RLIM_INFINITY;
201 if (setrlimit(RLIMIT_CORE, &rl) == -1) {
  /dalvik/vm/native/
dalvik_system_Zygote.cpp 410 struct rlimit rl; local
411 rl.rlim_cur = 0;
412 rl.rlim_max = RLIM_INFINITY;
413 if (setrlimit(RLIMIT_CORE, &rl) < 0) {
  /external/chromium_org/third_party/libwebp/dsp/
upsampling_neon.c 133 int32x4_t rl = vaddl_s16(vget_low_s16(yy), vget_low_s16(vr)); \
140 rl = vmulq_lane_s32(rl, cf32, 0); \
147 y = vqmovun_s16(vcombine_s16(vrshrn_n_s32(rl, 16), \
  /external/webp/src/dsp/
upsampling_neon.c 133 int32x4_t rl = vaddl_s16(vget_low_s16(yy), vget_low_s16(vr)); \
140 rl = vmulq_lane_s32(rl, cf32, 0); \
147 y = vqmovun_s16(vcombine_s16(vrshrn_n_s32(rl, 16), \
  /external/stlport/test/unit/
num_facets_test.cpp 35 const ref_locale& rl = *prl; local
38 CPPUNIT_ASSERT( npct.decimal_point() == *rl.decimal_point );
  /ndk/tests/device/test-gnustl-full/unit/
num_facets_test.cpp 35 const ref_locale& rl = *prl; local
38 CPPUNIT_ASSERT( npct.decimal_point() == *rl.decimal_point );
  /ndk/tests/device/test-stlport/unit/
num_facets_test.cpp 35 const ref_locale& rl = *prl; local
38 CPPUNIT_ASSERT( npct.decimal_point() == *rl.decimal_point );
  /external/valgrind/main/coregrind/
m_main.c 1358 struct vki_rlimit rl; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFAState.java 322 Label rl = reachableLabels.get(i); local
325 rl.toString(dfa.nfa.grammar)+"="+
328 if ( !Label.intersect(label, rl) ) {
331 //System.out.println(label+" collides with "+rl);
338 IntSet s_i = rl.getSet();
  /frameworks/av/services/audioflinger/
AudioMixer.cpp 927 uint32_t rl = *reinterpret_cast<const uint32_t *>(in); local
965 uint32_t rl = *reinterpret_cast<const uint32_t *>(in); local
1322 uint32_t rl = *reinterpret_cast<const uint32_t *>(in); local
1333 uint32_t rl = *reinterpret_cast<const uint32_t *>(in); local
    [all...]

Completed in 650 milliseconds

12 3 4 5 6