Home
last modified time | relevance | path

Searched refs:ci (Results 1 – 25 of 1126) sorted by relevance

12345678910>>...46

/external/libnl/lib/route/link/
Dcan.c74 struct can_info *ci; in can_alloc() local
77 memset(link->l_info, 0, sizeof(*ci)); in can_alloc()
79 ci = calloc(1, sizeof(*ci)); in can_alloc()
80 if (!ci) in can_alloc()
83 link->l_info = ci; in can_alloc()
93 struct can_info *ci; in can_parse() local
104 ci = link->l_info; in can_parse()
107 ci->ci_state = nla_get_u32(tb[IFLA_CAN_STATE]); in can_parse()
108 ci->ci_mask |= CAN_HAS_STATE; in can_parse()
112 ci->ci_restart = nla_get_u32(tb[IFLA_CAN_RESTART]); in can_parse()
[all …]
/external/tremolo/Tremolo/
Dtreminfo.c125 codec_setup_info *ci = (codec_setup_info *)vi->codec_setup; in vorbis_info_blocksize() local
126 return ci ? ci->blocksizes[zo] : -1; in vorbis_info_blocksize()
136 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in vorbis_info_clear() local
139 if(ci){ in vorbis_info_clear()
141 if(ci->mode_param)_ogg_free(ci->mode_param); in vorbis_info_clear()
143 if(ci->map_param){ in vorbis_info_clear()
144 for(i=0;i<ci->maps;i++) /* unpack does the range checking */ in vorbis_info_clear()
145 mapping_clear_info(ci->map_param+i); in vorbis_info_clear()
146 _ogg_free(ci->map_param); in vorbis_info_clear()
149 if(ci->floor_param){ in vorbis_info_clear()
[all …]
Ddsp.c50 codec_setup_info *ci; in vorbis_dsp_restart() local
53 ci=vi->codec_setup; in vorbis_dsp_restart()
54 if(!ci)return -1; in vorbis_dsp_restart()
69 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in vorbis_dsp_init() local
76 v->work[i]=(ogg_int32_t *)_ogg_calloc(1,(ci->blocksizes[1]>>1)* in vorbis_dsp_init()
78 v->mdctright[i]=(ogg_int32_t *)_ogg_calloc(1,(ci->blocksizes[1]>>2)* in vorbis_dsp_init()
146 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in vorbis_dsp_pcmout() local
153 mdct_unroll_lap(ci->blocksizes[0],ci->blocksizes[1], in vorbis_dsp_pcmout()
155 _vorbis_window(ci->blocksizes[0]>>1), in vorbis_dsp_pcmout()
156 _vorbis_window(ci->blocksizes[1]>>1), in vorbis_dsp_pcmout()
[all …]
/external/llvm-project/clang/test/CodeGenCXX/
Dvolatile-1.cpp9 volatile _Complex int ci; variable
30 (float)(ci); in test()
38 (void)ci; in test()
44 (void)(ci=ci); in test()
54 ci+=ci; in test()
66 (ci += ci) + ci; in test()
108 ci+ci; in test()
118 +ci; in test()
204 ci; // ci is a load in C++11 in test()
210 (int)ci; in test()
[all …]
/external/clang/test/CodeGenCXX/
Dvolatile-1.cpp8 volatile _Complex int ci; variable
28 (float)(ci); in test()
36 (void)ci; in test()
39 (void)(ci=ci); in test()
49 ci+=ci; in test()
61 (ci += ci) + ci; in test()
103 ci+ci; in test()
113 +ci; in test()
193 ci; in test()
197 (int)ci; in test()
[all …]
/external/angle/infra/config/generated/
Dluci-scheduler.cfg9 realm: "ci"
10 acl_sets: "ci"
13 bucket: "luci.angle.ci"
19 realm: "ci"
20 acl_sets: "ci"
23 bucket: "luci.angle.ci"
29 realm: "ci"
30 acl_sets: "ci"
33 bucket: "luci.angle.ci"
39 realm: "ci"
[all …]
/external/clang/test/CodeGen/
Dvolatile-1.c8 volatile _Complex int ci; variable
32 (float)(ci); in test()
35 (void)ci; in test()
43 (void)(ci=ci); in test()
56 ci+=ci; in test()
71 (ci += ci) + ci; in test()
97 ci+ci; in test()
103 +ci; in test()
171 ci; in test()
175 (int)ci; in test()
[all …]
/external/llvm-project/clang/test/CodeGen/
Dvolatile-1.c8 volatile _Complex int ci; variable
32 (float)(ci); in test()
35 (void)ci; in test()
43 (void)(ci=ci); in test()
56 ci+=ci; in test()
71 (ci += ci) + ci; in test()
97 ci+ci; in test()
103 +ci; in test()
171 ci; in test()
175 (int)ci; in test()
[all …]
/external/lua/src/
Dldo.c130 if (L->ci->top < L->top) in luaD_throw()
131 L->ci->top = L->top; /* pushing msg. can break this invariant */ in luaD_throw()
165 CallInfo *ci; in correctstack() local
172 for (ci = L->ci; ci != NULL; ci = ci->previous) { in correctstack()
173 ci->top = (ci->top - oldstack) + newstack; in correctstack()
174 ci->func = (ci->func - oldstack) + newstack; in correctstack()
175 if (isLua(ci)) in correctstack()
176 ci->u.l.trap = 1; /* signal to update 'trap' in 'luaV_execute' */ in correctstack()
236 CallInfo *ci; in stackinuse() local
238 for (ci = L->ci; ci != NULL; ci = ci->previous) { in stackinuse()
[all …]
Dldebug.c39 static const char *funcnamefromcode (lua_State *L, CallInfo *ci,
43 static int currentpc (CallInfo *ci) { in currentpc() argument
44 lua_assert(isLua(ci)); in currentpc()
45 return pcRel(ci->u.l.savedpc, ci_func(ci)->p); in currentpc()
102 static int getcurrentline (CallInfo *ci) { in getcurrentline() argument
103 return luaG_getfuncline(ci_func(ci)->p, currentpc(ci)); in getcurrentline()
118 static void settraps (CallInfo *ci) { in settraps() argument
119 for (; ci != NULL; ci = ci->previous) in settraps()
120 if (isLua(ci)) in settraps()
121 ci->u.l.trap = 1; in settraps()
[all …]
Dlstate.c157 CallInfo *ci; in luaE_extendCI() local
158 lua_assert(L->ci->next == NULL); in luaE_extendCI()
160 ci = luaM_new(L, CallInfo); in luaE_extendCI()
161 lua_assert(L->ci->next == NULL); in luaE_extendCI()
162 L->ci->next = ci; in luaE_extendCI()
163 ci->previous = L->ci; in luaE_extendCI()
164 ci->next = NULL; in luaE_extendCI()
165 ci->u.l.trap = 0; in luaE_extendCI()
167 return ci; in luaE_extendCI()
175 CallInfo *ci = L->ci; in luaE_freeCI() local
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DCharacterIteration.java35 public static int next32(CharacterIterator ci) { in next32() argument
38 int c = ci.current(); in next32()
40 c = ci.next(); in next32()
42 ci.previous(); in next32()
47 c = ci.next(); in next32()
52 c = nextTrail32(ci, c); in next32()
58 ci.previous(); in next32()
71 public static int nextTrail32(CharacterIterator ci, int lead) { in nextTrail32() argument
72 if (lead == CharacterIterator.DONE && ci.getIndex() >= ci.getEndIndex()) { in nextTrail32()
77 char cTrail = ci.next(); in nextTrail32()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCharacterIteration.java31 public static int next32(CharacterIterator ci) { in next32() argument
34 int c = ci.current(); in next32()
36 c = ci.next(); in next32()
38 ci.previous(); in next32()
43 c = ci.next(); in next32()
48 c = nextTrail32(ci, c); in next32()
54 ci.previous(); in next32()
67 public static int nextTrail32(CharacterIterator ci, int lead) { in nextTrail32() argument
68 if (lead == CharacterIterator.DONE && ci.getIndex() >= ci.getEndIndex()) { in nextTrail32()
73 char cTrail = ci.next(); in nextTrail32()
[all …]
/external/libwebsockets/plugins/
Dserver-status.js73 var u, ci, n;
115 for (ci = 0; ci < jso.i.contexts.length; ci++) {
117 if (parseInt(jso.i.contexts[ci].deprecated, 10) === 0)
122 "Deprecated Context " + ci + "</td><td>";
124 u = parseInt(san(jso.i.contexts[ci].context_uptime), 10);
132 …"<span class=n>Listening wsi:</span> <span class=v>" + san(jso.i.contexts[ci].listen_wsi) + "</spa…
133 …"<span class=n>Current wsi alive:</span> <span class=v>" + (parseInt(san(jso.i.contexts[ci].wsi_al…
134 parseInt(san(jso.i.contexts[ci].listen_wsi), 10)) + "</span><br>" +
135 …"<span class=n>Total Rx:</span> <span class=v>" + humanize(san(jso.i.contexts[ci].rx)) +"B</span>,…
136 …"<span class=n>Total Tx:</span> <span class=v>" + humanize(san(jso.i.contexts[ci].tx)) +"B</span><…
[all …]
/external/libopus/src/
Dopus_compare.c73 int ci; in read_pcm16() local
74 for(ci=0;ci<_nchannels;ci++){ in read_pcm16()
76 s=buf[2*(xi*_nchannels+ci)+1]<<8|buf[2*(xi*_nchannels+ci)]; in read_pcm16()
78 samples[(nsamples+xi)*_nchannels+ci]=s; in read_pcm16()
113 int ci; in band_energy() local
116 for(ci=0;ci<_nchannels;ci++){ in band_energy()
118 x[ci*_window_sz+xk]=window[xk]*_in[(xi*_step+xk)*_nchannels+ci]; in band_energy()
124 for(ci=0;ci<_nchannels;ci++){ in band_energy()
131 re+=c[ti]*x[ci*_window_sz+xk]; in band_energy()
132 im-=s[ti]*x[ci*_window_sz+xk]; in band_energy()
[all …]
/external/rust/crates/libz-sys/src/zlib/contrib/minizip/
Dzip.c171 curfile64_info ci; /* info on the file curretly writing */ member
876 ziinit.ci.stream_initialised = 0; in zipOpen3()
969 if(zi->ci.zip64) in Write_LocalFileHeader()
976 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.flag,2); in Write_LocalFileHeader()
979 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.method,2); in Write_LocalFileHeader()
982 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.dosDate,4); in Write_LocalFileHeader()
989 if(zi->ci.zip64) in Write_LocalFileHeader()
996 if(zi->ci.zip64) in Write_LocalFileHeader()
1005 if(zi->ci.zip64) in Write_LocalFileHeader()
1026 if ((err==ZIP_OK) && (zi->ci.zip64)) in Write_LocalFileHeader()
[all …]
/external/zlib/contrib/minizip/
Dzip.c171 curfile64_info ci; /* info on the file curretly writing */ member
876 ziinit.ci.stream_initialised = 0; in zipOpen3()
969 if(zi->ci.zip64) in Write_LocalFileHeader()
976 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.flag,2); in Write_LocalFileHeader()
979 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.method,2); in Write_LocalFileHeader()
982 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.dosDate,4); in Write_LocalFileHeader()
989 if(zi->ci.zip64) in Write_LocalFileHeader()
996 if(zi->ci.zip64) in Write_LocalFileHeader()
1005 if(zi->ci.zip64) in Write_LocalFileHeader()
1026 if ((err==ZIP_OK) && (zi->ci.zip64)) in Write_LocalFileHeader()
[all …]
/external/javassist/src/main/javassist/bytecode/
DCodeAnalyzer.java39 CodeIterator ci = codeAttr.iterator(); in computeMaxStack() local
40 int length = ci.getCodeLength(); in computeMaxStack()
50 visitBytecode(ci, stack, i); in computeMaxStack()
72 private void visitBytecode(CodeIterator ci, int[] stack, int index) in visitBytecode() argument
76 ci.move(index); in visitBytecode()
80 while (ci.hasNext()) { in visitBytecode()
81 index = ci.next(); in visitBytecode()
83 int op = ci.byteAt(index); in visitBytecode()
84 stackDepth = visitInst(op, ci, index, stackDepth); in visitBytecode()
88 if (processBranch(op, ci, index, codeLength, stack, stackDepth, jsrDepth)) in visitBytecode()
[all …]
DCodeAttribute.java492 CodeIterator ci = iterator(); in insertLocalVar() local
493 while (ci.hasNext()) in insertLocalVar()
494 shiftIndex(ci, where, size); in insertLocalVar()
506 private static void shiftIndex(CodeIterator ci, int lessThan, int delta) throws BadBytecode { in shiftIndex() argument
507 int index = ci.next(); in shiftIndex()
508 int opcode = ci.byteAt(index); in shiftIndex()
514 shiftIndex8(ci, index, opcode, lessThan, delta); in shiftIndex()
518 shiftIndex0(ci, index, opcode, lessThan, delta, ILOAD_0, ILOAD); in shiftIndex()
524 shiftIndex8(ci, index, opcode, lessThan, delta); in shiftIndex()
528 shiftIndex0(ci, index, opcode, lessThan, delta, ISTORE_0, ISTORE); in shiftIndex()
[all …]
/external/llvm/utils/llvm-build/llvmbuild/
Dmain.py117 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): argument
140 if ci in current_set:
143 '%r (%s)' % (ci.name, relation)
144 for relation,ci in current_stack)
146 ci.name, cycle_description, ci.name))
149 if ci not in components_to_visit:
[all …]
/external/llvm-project/lldb/test/API/python_api/interpreter/
DTestCommandInterpreterAPI.py34 ci = self.dbg.GetCommandInterpreter()
35 self.assertTrue(ci, VALID_COMMAND_INTERPRETER)
39 self.assertTrue(ci.HasCommands())
40 self.assertTrue(ci.HasAliases())
41 self.assertTrue(ci.HasAliasOptions())
42 self.assertTrue(ci.CommandExists("breakpoint"))
43 self.assertTrue(ci.CommandExists("target"))
44 self.assertTrue(ci.CommandExists("platform"))
45 self.assertTrue(ci.AliasExists("file"))
46 self.assertTrue(ci.AliasExists("run"))
[all …]
/external/libjpeg-turbo/
Djcmaster.c85 int ci; in initial_setup() local
125 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in initial_setup()
126 ci++, compptr++) { in initial_setup()
139 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in initial_setup()
140 ci++, compptr++) { in initial_setup()
142 compptr->component_index = ci; in initial_setup()
185 int scanno, ncomps, ci, coefi, thisi; in validate_script() local
205 for (ci = 0; ci < cinfo->num_components; ci++) in validate_script()
213 for (ci = 0; ci < cinfo->num_components; ci++) in validate_script()
214 component_sent[ci] = FALSE; in validate_script()
[all …]
Djcprepct.c137 int numrows, ci; in pre_process_data() local
157 for (ci = 0; ci < cinfo->num_components; ci++) { in pre_process_data()
158 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width, in pre_process_data()
175 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; in pre_process_data()
176 ci++, compptr++) { in pre_process_data()
177 expand_bottom_edge(output_buf[ci], compptr->width_in_blocks * DCTSIZE, in pre_process_data()
201 int numrows, ci; in pre_process_context() local
217 for (ci = 0; ci < cinfo->num_components; ci++) { in pre_process_context()
220 jcopy_sample_rows(prep->color_buf[ci], 0, prep->color_buf[ci], in pre_process_context()
234 for (ci = 0; ci < cinfo->num_components; ci++) { in pre_process_context()
[all …]
/external/mesa3d/.gitlab-ci/
Dprepare-artifacts.sh26 cp -Rp .gitlab-ci/bare-metal install/
27 cp -Rp .gitlab-ci/deqp* install/
28 cp -Rp .gitlab-ci/piglit install/
29 cp -Rp .gitlab-ci/traces*.yml install/
30 cp -Rp .gitlab-ci/tracie install/
31 cp -Rp .gitlab-ci/tracie-runner-gl.sh install/
32 cp -Rp .gitlab-ci/tracie-runner-vk.sh install/
33 cp -Rp .gitlab-ci/fossils.yml install/
34 cp -Rp .gitlab-ci/fossils install/
35 cp -Rp .gitlab-ci/fossilize-runner.sh install/
[all …]
/external/icu/icu4c/source/data/locales/
Dwo.txt52 "{1} 'ci' {0}",
53 "{1} 'ci' {0}",
111 "{1} 'ci' {0}",
112 "{1} 'ci' {0}",
424 other{"{0} fan ci ginaaw"}
435 other{"{0} fan ci ginaaw"}
446 other{"{0} fan ci ginaaw"}
468 "0"{"tay ci àjjuma ji"}
476 other{"{0} àjjuma ci ginaaw"}
483 "0"{"tay ci àj. ji"}
[all …]

12345678910>>...46