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

1 2 3 4 5 67 8 91011>>

  /external/strace/tests-m32/
nlattr_ifla_af_spec.c 262 static const struct ifla_cacheinfo ci = { local
268 ci, print_quoted_hex, 2,
269 PRINT_FIELD_U("{", ci, max_reasm_len);
270 PRINT_FIELD_U(", ", ci, tstamp);
271 PRINT_FIELD_U(", ", ci, reachable_time);
272 PRINT_FIELD_U(", ", ci, retrans_time);
  /external/strace/tests-mx32/
nlattr_ifla_af_spec.c 262 static const struct ifla_cacheinfo ci = { local
268 ci, print_quoted_hex, 2,
269 PRINT_FIELD_U("{", ci, max_reasm_len);
270 PRINT_FIELD_U(", ", ci, tstamp);
271 PRINT_FIELD_U(", ", ci, reachable_time);
272 PRINT_FIELD_U(", ", ci, retrans_time);
  /external/openssh/
servconf.c 703 static struct connection_info ci; local
706 return &ci;
707 ci.host = auth_get_canonical_hostname(ssh, use_dns);
708 ci.address = ssh_remote_ipaddr(ssh);
709 ci.laddress = ssh_local_ipaddr(ssh);
710 ci.lport = ssh_local_port(ssh);
711 return &ci;
781 match_cfg_line(char **condition, int line, struct connection_info *ci)
786 if (ci == NULL)
790 "laddr %s lport %d", cp, ci->user ? ci->user : "(null)"
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/draft/
ShortestCanonicalForm.java 165 CanonicalIterator ci = new CanonicalIterator(trial); local
166 for (String s = ci.next(); s != null; s = ci.next()) {
176 CanonicalIterator ci = new CanonicalIterator(""); field in class:ShortestCanonicalForm
216 ci.setSource(piece);
219 for (String trial = ci.next(); trial != null; trial = ci.next()) {
  /external/webrtc/webrtc/modules/audio_coding/acm2/
rent_a_codec.cc 71 rtc::Optional<CodecInst> ci = CodecInstById(*codec_id);
72 RTC_DCHECK(ci);
76 ci->channels = channels;
78 return ci;
246 for (const CodecInst& ci : RentACodec::Database()) {
247 RentACodec::RegisterCngPayloadType(&cng_payload_types, ci);
248 RentACodec::RegisterRedPayloadType(&red_payload_types, ci);
  /external/libjpeg-turbo/
jcphuff.c 202 int ci, tbl; local
246 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
247 compptr = cinfo->cur_comp_info[ci];
249 entropy->last_dc_val[ci] = 0;
446 int ci; local
458 for (ci = 0; ci < entropy->cinfo->comps_in_scan; ci++
479 int blkn, ci; local
1043 int ci, tbl; local
    [all...]
  /external/libaom/libaom/av1/encoder/
encodetxb.c 1391 const int ci = scan[si]; local
1453 const int ci = scan[si]; local
1530 const int ci = scan[si]; local
1642 const int ci = nz_ci[i]; local
1721 const int ci = scan[si]; local
    [all...]
  /external/lzma/C/
7zDec.c 378 UInt32 ci; local
385 for (ci = 0; ci < folder->NumCoders; ci++)
387 const CSzCoderInfo *coder = &folder->Coders[ci];
399 UInt64 unpackSize = unpackSizes[ci];
400 si = indices[ci];
401 if (ci < 2)
410 outBufCur = tempBuf[1 - ci] = temp;
411 tempSizes[1 - ci] = outSizeCur;
    [all...]
  /external/wayland/tests/
display-test.c 212 struct client_info *ci; local
214 wl_list_for_each(ci, &d->clients, link) {
215 if (ci->wl_client == client)
216 return ci;
227 struct client_info *ci; local
230 ci = find_client_info(d, client);
231 assert(ci);
238 ci->data = res;
786 struct client_info *ci; local
789 ci = find_client_info(d, client)
    [all...]
  /external/boringssl/src/crypto/x509/
t_x509.c 103 X509_CINF *ci; local
116 ci = x->cert_info;
159 if (X509_signature_print(bp, ci->signature, NULL) <= 0)
200 if (i2a_ASN1_OBJECT(bp, ci->key->algor->algorithm) <= 0)
216 if (ci->issuerUID) {
219 if (!X509_signature_dump(bp, ci->issuerUID, 12))
222 if (ci->subjectUID) {
225 if (!X509_signature_dump(bp, ci->subjectUID, 12))
232 ci->extensions, cflag, 8);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationServiceTest.java 164 CollatorInfo ci = info[i]; local
165 map.put(ci.locale, ci);
171 CollatorInfo ci = (CollatorInfo)map.get(loc); local
172 if (ci != null) {
173 return ci.collator;
180 CollatorInfo ci = (CollatorInfo)map.get(objectLocale); local
181 if (ci != null) {
182 return ci.getDisplayName(displayLocale);
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationServiceTest.java 161 CollatorInfo ci = info[i]; local
162 map.put(ci.locale, ci);
168 CollatorInfo ci = (CollatorInfo)map.get(loc); local
169 if (ci != null) {
170 return ci.collator;
177 CollatorInfo ci = (CollatorInfo)map.get(objectLocale); local
178 if (ci != null) {
179 return ci.getDisplayName(displayLocale);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
BreakIteratorRegTest.java 120 private static String getString(CharacterIterator ci) {
121 StringBuffer buf = new StringBuffer(ci.getEndIndex() - ci.getBeginIndex() + 2);
123 for (char c = ci.first(); c != CharacterIterator.DONE; c = ci.next()) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
BreakIteratorRegTest.java 117 private static String getString(CharacterIterator ci) {
118 StringBuffer buf = new StringBuffer(ci.getEndIndex() - ci.getBeginIndex() + 2);
120 for (char c = ci.first(); c != CharacterIterator.DONE; c = ci.next()) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lapi.c 56 CallInfo *ci = L->ci; local
58 TValue *o = ci->func + idx;
59 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index");
64 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index");
72 if (ttislcf(ci->func)) /* light C function? */
75 CClosure *func = clCvalue(ci->func);
94 CallInfo *ci = L->ci; local
952 CallInfo *ci = L->ci; local
    [all...]
lstate.h 106 #define isLua(ci) ((ci)->callstatus & CIST_LUA)
159 CallInfo *ci; /* call info for current function */ member in struct:lua_State
  /art/compiler/optimizing/
stack_map_test.cc 437 CodeInfo ci(memory.data());
440 StackMap sm0 = ci.GetStackMapAt(0);
441 DexRegisterMap dex_registers0 = ci.GetDexRegisterMapOf(sm0);
447 StackMap sm1 = ci.GetStackMapAt(1);
448 DexRegisterMap dex_registers1 = ci.GetDexRegisterMapOf(sm1);
454 StackMap sm2 = ci.GetStackMapAt(2);
455 DexRegisterMap dex_registers2 = ci.GetDexRegisterMapOf(sm2);
584 CodeInfo ci(memory.data());
588 StackMap sm0 = ci.GetStackMapAt(0);
590 DexRegisterMap dex_registers0 = ci.GetDexRegisterMapOf(sm0)
    [all...]
  /frameworks/av/media/ndk/
NdkMediaCodec.cpp 851 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo* ci) {
852 return ci->numsubsamples;
856 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo* ci, uint8_t *dst) {
857 if (!ci) {
863 memcpy(dst, ci->key, 16);
868 media_status_t AMediaCodecCryptoInfo_getIV(AMediaCodecCryptoInfo* ci, uint8_t *dst) {
869 if (!ci) {
875 memcpy(dst, ci->iv, 16);
880 cryptoinfo_mode_t AMediaCodecCryptoInfo_getMode(AMediaCodecCryptoInfo* ci) {
881 if (!ci) {
    [all...]
  /external/libaom/libaom/test/
av1_inv_txfm1d_test.cc 132 for (int ci = 0; ci < count_test_block; ++ci) {
  /external/lua/src/
lstate.h 127 #define isLua(ci) ((ci)->callstatus & CIST_LUA)
180 unsigned short nci; /* number of items in 'ci' list */
184 CallInfo *ci; /* call info for current function */ member in struct:lua_State
  /external/syzkaller/prog/
minimization_test.go 109 p1, ci := Minimize(p, test.callIndex, false, test.pred)
115 if ci != test.resultCallIndex {
117 ti, ci, test.resultCallIndex)
143 ci := r.Intn(len(p.Calls))
144 p1, ci1 := Minimize(p, ci, r.Intn(2) == 0, func(p1 *Prog, callIndex int) bool {
147 if ci1 < 0 || ci1 >= len(p1.Calls) || p.Calls[ci].Meta.Name != p1.Calls[ci1].Meta.Name {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
InsnFormat.java 275 CstInsn ci = (CstInsn) insn; local
276 Constant cst = ci.getConstant();
288 CstInsn ci = (CstInsn) insn; local
290 if (! ci.hasIndex()) {
295 int index = ci.getIndex();
297 sb.append(ci.getConstant().typeName());
  /external/python/cpython3/Lib/ctypes/test/
test_prototypes.py 78 ci = c_int(0)
81 self.assertEqual(positive_address(addressof(ci)),
82 positive_address(func(byref(ci))))
85 self.assertRaises(ArgumentError, func, byref(ci))
88 self.assertRaises(ArgumentError, func, byref(ci))
91 self.assertRaises(ArgumentError, func, byref(ci))
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form21h.java 79 CstInsn ci = (CstInsn) insn; local
80 Constant cst = ci.getConstant();
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.java 77 CstInsn ci = (CstInsn) insn; local
78 Constant cst = ci.getConstant();

Completed in 521 milliseconds

1 2 3 4 5 67 8 91011>>