HomeSort by relevance Sort by last modified time
    Searched refs:ci (Results 251 - 275 of 452) sorted by null

<<111213141516171819

  /external/python/cpython2/Lib/idlelib/idle_test/
test_calltips.py 28 def __call__(self, ci): 'doc'
29 __call__.tip = "(self, ci)"
126 (tc.__call__, '(ci)'), (tc, '(ci)'), (TC.cm, "(a)"),):
157 def __call__(self, ci):
160 (NoCall(), ''), (Call(), '(ci)')):
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
module.cpp 158 for (auto& ci : capabilities_) {
159 uint32_t tcap = ci.GetSingleWordOperand(0);
  /external/wpa_supplicant_8/src/ap/
wnm_ap.c 97 struct wpa_channel_info ci; local
99 if (hostapd_drv_channel_info(hapd, &ci) != 0) {
115 if (ocv_insert_extended_oci(&ci, oci_ie) < 0) {
298 struct wpa_channel_info ci; local
300 if (hostapd_drv_channel_info(hapd, &ci) != 0) {
306 if (ocv_verify_tx_params(oci_ie, oci_ie_len, &ci,
307 channel_width_to_int(ci.chanwidth),
308 ci.seg1_idx) != 0) {
  /external/wpa_supplicant_8/src/rsn_supp/
wpa_ft.c 333 struct wpa_channel_info ci; local
335 if (wpa_sm_channel_info(sm, &ci) != 0) {
344 if (ocv_insert_oci(&ci, &pos) < 0) {
990 struct wpa_channel_info ci; local
992 if (wpa_sm_channel_info(sm, &ci) != 0) {
998 if (ocv_verify_tx_params(parse.oci, parse.oci_len, &ci,
999 channel_width_to_int(ci.chanwidth),
1000 ci.seg1_idx) != 0) {
  /cts/tests/app/src/android/app/cts/
ServiceTest.java     [all...]
  /external/icu/icu4c/source/tools/toolutil/
xmlparser.cpp 640 int ci = 0; local
641 while (ci < fPos && ci>=0) {
642 ci = src.indexOf((UChar)0x0a, ci+1);
  /external/libnl/lib/route/
neigh.c 387 struct nda_cacheinfo *ci = nla_data(tb[NDA_CACHEINFO]); local
389 neigh->n_cacheinfo.nci_confirmed = ci->ndm_confirmed;
390 neigh->n_cacheinfo.nci_used = ci->ndm_used;
391 neigh->n_cacheinfo.nci_updated = ci->ndm_updated;
392 neigh->n_cacheinfo.nci_refcnt = ci->ndm_refcnt;
  /external/ipsec-tools/src/racoon/
racoonctl.c 928 struct admin_com_indexes *ci; local
968 buf = vmalloc(sizeof(*ci));
981 ci = (struct admin_com_indexes *)buf->v;
983 ci->prefs = (u_int8_t)atoi(p_prefs); /* XXX should be handled error. */
985 ci->prefs = 32;
987 ci->prefd = (u_int8_t)atoi(p_prefd); /* XXX should be handled error. */
989 ci->prefd = 32;
990 ci->ul_proto = ulproto;
991 memcpy(&ci->src, src, sysdep_sa_len(src));
992 memcpy(&ci->dst, dst, sysdep_sa_len(dst))
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
LongArray.java 1229 int[] ci = new int[1 << width]; local
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/
LongArray.java 1230 int[] ci = new int[1 << width]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
complexobject.c 1139 Py_complex cr, ci; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
complexobject.c 1135 Py_complex cr, ci; local
    [all...]
  /external/clang/test/Sema/
atomic-ops.c 91 void f(_Atomic(int) *i, const _Atomic(int) *ci,
93 int *I, const int *CI,
96 __c11_atomic_init(ci, 5); // expected-error {{address argument to atomic operation must be a pointer to non-const _Atomic type ('const _Atomic(int) *' invalid)}}
103 __c11_atomic_store(ci, 0, memory_order_relaxed); // expected-error {{address argument to atomic operation must be a pointer to non-const _Atomic type ('const _Atomic(int) *' invalid)}}
108 __c11_atomic_load(ci, memory_order_seq_cst); // expected-error {{address argument to atomic operation must be a pointer to non-const _Atomic type ('const _Atomic(int) *' invalid)}}
114 load_n_1 = __atomic_load_n(CI, memory_order_relaxed);
117 __atomic_load(CI, I, memory_order_relaxed);
124 __atomic_load(CI, I, memory_order_relaxed);
125 __atomic_load(I, CI, memory_order_relaxed); // expected-warning {{passing 'const int *' to parameter of type 'int *' discards qualifiers}}
126 __atomic_load(CI, CI, memory_order_relaxed); // expected-warning {{passing 'const int *' to parameter of type 'int (…)
    [all...]
  /external/python/cpython2/Objects/
complexobject.c 1139 Py_complex cr, ci; local
1239 ci.real = cr.imag;
1242 ci = ((PyComplexObject*)i)->cval;
1251 ci.real = PyFloat_AsDouble(tmp);
    [all...]
  /external/python/cpython3/Objects/
complexobject.c 952 Py_complex cr, ci; local
1052 ci.real = cr.imag;
1055 ci = ((PyComplexObject*)i)->cval;
1064 ci.real = PyFloat_AsDouble(tmp);
1068 parts are real numbers, so that ci.imag and cr.imag are zero.
1072 cr.real -= ci.imag;
1075 ci.real += cr.imag;
1077 return complex_subtype_from_doubles(type, cr.real, ci.real);
    [all...]
  /external/llvm/unittests/Support/
Path.cpp 106 for (sys::path::const_iterator ci = sys::path::begin(*i),
108 ci != ce;
109 ++ci) {
110 ASSERT_FALSE(ci->empty());
111 ComponentStack.push_back(*ci);
114 for (sys::path::reverse_iterator ci = sys::path::rbegin(*i),
116 ci != ce;
117 ++ci) {
118 ASSERT_TRUE(*ci == ComponentStack.back());
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_receiver.cc 184 const auto ci = RentACodec::CodecIdFromIndex(decoder->acm_codec_id);
185 return ci ? RentACodec::CodecInstById(*ci)->plfreq : -1;
  /external/libjpeg-turbo/
jcdctmgr.c 239 int ci, qtblno, i; local
244 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
245 ci++, compptr++) {
  /external/lua/src/
ltm.c 113 if (isLua(L->ci))
  /external/lzma/CPP/7zip/Archive/7z/
7zEncode.cpp 601 UInt32 ci = _bindInfo.UnpackCoder; local
605 if (_bindInfo.Coders[ci].NumStreams == 0)
608 UInt32 outIndex = _bindInfo.Coder_to_Stream[ci];
612 ci = _bindInfo.Bonds[bond].UnpackIndex;
  /external/u-boot/drivers/usb/host/
ehci-msm.c 16 #include <usb/ehci-ci.h>
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestReferenceStringSearch.java 498 CharacterIterator ci = new StringCharacterIterator(bigText); local
499 StringSearch foo = new StringSearch("lazy", ci, TEST_COLLATOR,
  /external/cldr/tools/java/org/unicode/cldr/posix/
POSIX_LCMonetary.java 64 Set<SupplementalDataInfo.CurrencyDateInfo> ci = supp.getCurrencyDateInfo(territory); local
65 Iterator<SupplementalDataInfo.CurrencyDateInfo> it = ci.iterator();
  /external/wpa_supplicant_8/wpa_supplicant/
mesh_mpm.c 368 struct wpa_channel_info ci; local
370 if (wpa_drv_channel_info(wpa_s, &ci) != 0) {
377 if (ocv_insert_extended_oci(&ci, pos) < 0)
1247 struct wpa_channel_info ci; local
    [all...]
  /cts/tests/tests/telephony/current/src/android/telephony/cts/
CellInfoTest.java 118 private static final int CI = 268435456;
582 int ci = lte.getCi(); local
583 assertTrue("getCi() out of range [0,268435456], ci=" + ci,
584 (ci == Integer.MAX_VALUE) || (ci >= 0 && ci <= CI));
634 assertTrue("CID is required for registered cells", ci != Integer.MAX_VALUE);
    [all...]

Completed in 1076 milliseconds

<<111213141516171819