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

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p3-0x.cpp 43 void test_C(C<int> ci) {
44 int &ir = ci.g1();
45 float &fr = ci.g2();
46 int &ir2 = ci.g3();
47 float &fr2 = ci.g4();
48 int &ir3 = ci.g5();
49 float &fr3 = ci.g6();
50 int &ir4 = ci.g7();
51 float &fr4 = ci.g8();
52 static_assert(!noexcept(ci.g1()), "exception-specification failure")
    [all...]
  /external/clang/test/SemaCXX/
ambig-user-defined-conversions.cpp 16 void func(const int ci, const char cc); // expected-note {{candidate function}}
17 void func(const char ci, const B b); // expected-note {{candidate function}}
18 void func(const B b, const int ci); // expected-note {{candidate function}}
28 void func2(const int ci); // expected-note {{candidate function}}
  /external/perfetto/infra/kokoro_ci/
run_test_in_container.sh 40 asia.gcr.io/perfetto-ci/perfetto-ci:latest \
  /external/libjpeg-turbo/
jdmainct.h 53 int ci, i, rgroup; local
58 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
59 ci++, compptr++) {
62 xbuf0 = main_ptr->xbuffer[0][ci];
63 xbuf1 = main_ptr->xbuffer[1][ci];
jcmaster.c 85 int ci; local
125 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
126 ci++, compptr++) {
139 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
140 ci++, compptr++) {
142 compptr->component_index = ci;
185 int scanno, ncomps, ci, coefi, thisi; local
205 for (ci = 0; ci < cinfo->num_components; ci++
319 int ci; local
360 int ci, mcublks, tmp; local
    [all...]
jdcoefct.c 91 int blkn, ci, xindex, yindex, yoffset, useful_width; local
123 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
124 compptr = cinfo->cur_comp_info[ci];
194 int blkn, ci, xindex, yindex, yoffset; local
201 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
202 compptr = cinfo->cur_comp_info[ci];
266 int ci, block_row, block_rows; local
356 int ci, coefi; local
413 int ci, block_row, block_rows, access_rows; local
647 int ci, access_rows; local
    [all...]
jddctmgr.c 100 int ci, i; local
106 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
107 ci++, compptr++) {
228 idct->pub.inverse_DCT[ci] = method_ptr;
236 if (!compptr->component_needed || idct->cur_method[ci] == method)
241 idct->cur_method[ci] = method;
333 int ci; local
342 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components
    [all...]
jdmainct.c 138 int ci, rgroup; local
151 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
152 ci++, compptr++) {
162 main_ptr->xbuffer[0][ci] = xbuf;
164 main_ptr->xbuffer[1][ci] = xbuf;
179 int ci, i, rgroup; local
184 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
185 ci++, compptr++)
220 int ci, i, rgroup, iMCUheight, rows_left; local
427 int ci, rgroup, ngroups; local
    [all...]
  /external/testng/src/main/java/org/testng/remote/
RemoteWorker.java 24 protected SuiteRunner sendSuite(ConnectionInfo ci, XmlSuite suite)
28 + ci.getSocket().getInetAddress().getCanonicalHostName() + ":"
29 + ci.getSocket().getRemoteSocketAddress());
30 ci.getOos().writeObject(suite);
31 ci.getOos().flush();
32 SuiteRunner result = (SuiteRunner) ci.getOis().readObject();
  /external/lua/src/
ldebug.c 38 #define ci_func(ci) (clLvalue((ci)->func))
41 static const char *funcnamefromcode (lua_State *L, CallInfo *ci,
45 static int currentpc (CallInfo *ci) {
46 lua_assert(isLua(ci));
47 return pcRel(ci->u.l.savedpc, ci_func(ci)->p);
51 static int currentline (CallInfo *ci) {
52 return getfuncline(ci_func(ci)->p, currentpc(ci));
64 CallInfo *ci = L->ci; \/* get function that yielded *\/ local
112 CallInfo *ci; local
312 CallInfo *ci; local
573 CallInfo *ci = L->ci; local
653 CallInfo *ci = L->ci; local
667 CallInfo *ci = L->ci; local
    [all...]
lstate.c 109 CallInfo *ci = luaM_new(L, CallInfo); local
110 lua_assert(L->ci->next == NULL);
111 L->ci->next = ci;
112 ci->previous = L->ci;
113 ci->next = NULL;
115 return ci;
123 CallInfo *ci = L->ci; local
138 CallInfo *ci = L->ci; local
152 int i; CallInfo *ci; local
    [all...]
  /external/zlib/src/contrib/minizip/
zip.c 171 curfile64_info ci; /* info on the file curretly writing */ member in struct:__anon50575
876 ziinit.ci.stream_initialised = 0;
969 if(zi->ci.zip64)
976 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.flag,2);
979 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.method,2);
982 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.dosDate,4);
989 if(zi->ci.zip64)
996 if(zi->ci.zip64)
1005 if(zi->ci.zip64)
1026 if ((err==ZIP_OK) && (zi->ci.zip64)
    [all...]
  /external/strace/
rtnl_addr.c 64 struct ifa_cacheinfo ci; local
66 if (len < sizeof(ci))
68 else if (!umove_or_printaddr(tcp, addr, &ci)) {
69 PRINT_FIELD_U("{", ci, ifa_prefered);
70 PRINT_FIELD_U(", ", ci, ifa_valid);
71 PRINT_FIELD_U(", ", ci, cstamp);
72 PRINT_FIELD_U(", ", ci, tstamp);
rtnl_neigh.c 64 struct nda_cacheinfo ci; local
66 if (len < sizeof(ci))
68 else if (!umove_or_printaddr(tcp, addr, &ci)) {
69 PRINT_FIELD_U("{", ci, ndm_confirmed);
70 PRINT_FIELD_U(", ", ci, ndm_used);
71 PRINT_FIELD_U(", ", ci, ndm_updated);
72 PRINT_FIELD_U(", ", ci, ndm_refcnt);
  /external/llvm/utils/llvm-build/llvmbuild/
main.py 117 for ci in self.component_infos:
118 existing = self.component_info_map.get(ci.name)
122 ci.name, ci.subpath, existing.subpath))
123 self.component_info_map[ci.name] = ci
138 def visit_component_info(ci, current_stack, current_set):
140 if ci in current_set:
143 '%r (%s)' % (ci.name, relation)
144 for relation,ci in current_stack
    [all...]
  /external/testng/src/main/java/org/testng/internal/remote/
SlavePool.java 30 ConnectionInfo ci = new ConnectionInfo(); local
31 ci.setSocket(s);
32 addSlave(s, ci);
35 private void addSlave(Socket s, ConnectionInfo ci) {
37 m_connectionInfos.put(s, ci);
58 // ConnectionInfo ci = m_connectionInfos.remove(slave.socket);
59 // ci.oos.close();
60 // ci.ois.close();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lstate.c 113 CallInfo *ci = luaM_new(L, CallInfo); local
114 lua_assert(L->ci->next == NULL);
115 L->ci->next = ci;
116 ci->previous = L->ci;
117 ci->next = NULL;
118 return ci;
123 CallInfo *ci = L->ci; local
134 int i; CallInfo *ci; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
SimpleVectorialPointChecker.java 79 final double ci = c[i]; local
80 final double difference = FastMath.abs(pi - ci);
81 final double size = FastMath.max(FastMath.abs(pi), FastMath.abs(ci));
SimpleVectorialValueChecker.java 79 final double ci = c[i]; local
80 final double difference = FastMath.abs(pi - ci);
81 final double size = FastMath.max(FastMath.abs(pi), FastMath.abs(ci));
  /external/lzma/CPP/Windows/Control/
ListView.cpp 36 LVCOLUMN ci; local
37 ci.mask = LVCF_TEXT | LVCF_WIDTH | LVCF_SUBITEM;
38 ci.pszText = (LPTSTR)text;
39 ci.iSubItem = columnIndex;
40 ci.cx = width;
41 return InsertColumn(columnIndex, &ci);
69 LVCOLUMNW ci; local
70 ci.mask = LVCF_TEXT | LVCF_WIDTH | LVCF_SUBITEM;
71 ci.pszText = (LPWSTR)text;
72 ci.iSubItem = columnIndex;
    [all...]
  /external/iproute2/tc/
m_connmark.c 111 struct tc_connmark *ci; local
122 ci = RTA_DATA(tb[TCA_CONNMARK_PARMS]);
124 fprintf(f, " connmark zone %d\n", ci->zone);
125 fprintf(f, "\t index %u ref %d bind %d", ci->index,
126 ci->refcnt, ci->bindcnt);
  /external/libffi/testsuite/libffi.call/
return_complex.inc 16 T_C_TYPE cr, ci;
27 ci = 1000.0 - cr;
28 c = cr + ci * I;
  /external/strace/tests/
nlattr_ndmsg.c 100 static const struct nda_cacheinfo ci = { local
109 NDA_CACHEINFO, pattern, ci,
110 PRINT_FIELD_U("{", ci, ndm_confirmed);
111 PRINT_FIELD_U(", ", ci, ndm_used);
112 PRINT_FIELD_U(", ", ci, ndm_updated);
113 PRINT_FIELD_U(", ", ci, ndm_refcnt);
  /external/strace/tests-m32/
nlattr_ndmsg.c 100 static const struct nda_cacheinfo ci = { local
109 NDA_CACHEINFO, pattern, ci,
110 PRINT_FIELD_U("{", ci, ndm_confirmed);
111 PRINT_FIELD_U(", ", ci, ndm_used);
112 PRINT_FIELD_U(", ", ci, ndm_updated);
113 PRINT_FIELD_U(", ", ci, ndm_refcnt);
  /external/strace/tests-mx32/
nlattr_ndmsg.c 100 static const struct nda_cacheinfo ci = { local
109 NDA_CACHEINFO, pattern, ci,
110 PRINT_FIELD_U("{", ci, ndm_confirmed);
111 PRINT_FIELD_U(", ", ci, ndm_used);
112 PRINT_FIELD_U(", ", ci, ndm_updated);
113 PRINT_FIELD_U(", ", ci, ndm_refcnt);

Completed in 451 milliseconds

12 3 4 5 6 7 8 91011>>