Searched refs:ei (Results 1 - 25 of 39) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DEncodings.java116 EncodingInfo ei;
119 ei = (EncodingInfo) _encodingTableKeyJava.get(normalizedEncoding);
120 if (ei == null)
121 ei = (EncodingInfo) _encodingTableKeyMime.get(normalizedEncoding);
122 if (ei == null) {
124 ei = new EncodingInfo(null,null, '\u0000');
127 return ei;
139 EncodingInfo ei;
142 ei = (EncodingInfo) _encodingTableKeyJava.get(normalizedEncoding);
143 if (ei
[all...]
/external/llvm/lib/Analysis/
H A DProfileEstimatorPass.cpp184 for (SmallVector<Edge, 8>::iterator ei = ExitEdges.begin(),
185 ee = ExitEdges.end(); ei != ee; ++ei) {
186 if (ProcessedExits.insert(*ei).second) {
187 double w = getEdgeWeight(*ei);
189 Edges.push_back(*ei);
192 if (MinimalWeight.find(*ei) != MinimalWeight.end()) {
193 incoming -= MinimalWeight[*ei];
194 DEBUG(dbgs() << "Reserving " << format("%.20g",MinimalWeight[*ei]) << " at " << (*ei) << "\
[all...]
H A DProfileInfoLoaderPass.cpp200 for (std::set<Edge>::iterator ei = SpanningTree.begin(),
201 ee = SpanningTree.end(); ei != ee; ++ei) {
202 BBisUnvisited.insert(ei->first);
203 BBisUnvisited.insert(ei->second);
211 for (std::set<Edge>::iterator ei = SpanningTree.begin(),
212 ee = SpanningTree.end(); ei != ee; ++ei) {
213 DEBUG(dbgs()<< *ei <<",");
H A DProfileInfo.cpp609 std::set<Edge>::iterator ei,ee; local
611 ei = outMissing.begin();
617 ei = inMissing.begin();
628 for ( ; ei != ee; ++ei ) {
629 setEdgeWeight(*ei,share);
/external/clang/test/CodeGen/
H A Dinline.c3 // RUN: grep "define available_externally i32 @ei()" %t
25 // RUN: grep "define i32 @ei()" %t
54 extern __inline int ei() { return 123; } function
57 return ei();
/external/clang/test/CodeGenCXX/
H A Dvtable-linkage.cpp70 E<int> ei; local
71 (void)ei;
/external/clang/tools/diagtool/
H A DDiagTool.cpp46 ei = getTools(tools)->end(); it != ei; ++it) {
55 ei = toolNames.end(); it != ei; ++it) {
H A DListWarnings.cpp63 for (std::vector<Entry>::iterator it = entries.begin(), ei = entries.end();
64 it != ei; ++it) {
/external/icu4c/common/unicode/
H A Dparsepos.h143 void setErrorIndex(int32_t ei);
224 ParsePosition::setErrorIndex(int32_t ei) argument
226 this->errorIndex = ei;
/external/tinyalsa/
H A Dmixer.c128 struct snd_ctl_elem_info *ei = mixer->info + n; local
129 ei->id.numid = eid[n].numid;
130 if (ioctl(fd, SNDRV_CTL_IOCTL_ELEM_INFO, ei) < 0)
132 mixer->ctl[n].info = ei;
134 if (ei->type == SNDRV_CTL_ELEM_TYPE_ENUMERATED) {
135 char **enames = calloc(ei->value.enumerated.items, sizeof(char*));
139 for (m = 0; m < ei->value.enumerated.items; m++) {
141 tmp.id.numid = ei->id.numid;
244 static int percent_to_int(struct snd_ctl_elem_info *ei, int percent) argument
253 range = (ei
258 int_to_percent(struct snd_ctl_elem_info *ei, int value) argument
[all...]
/external/yaffs2/yaffs2/
H A Dyaffs_mtdif.c214 struct erase_info ei; local
217 ei.mtd = mtd;
218 ei.addr = addr;
219 ei.len = dev->nDataBytesPerChunk * dev->nChunksPerBlock;
220 ei.time = 1000;
221 ei.retries = 2;
222 ei.callback = NULL;
223 ei.priv = (u_long) dev;
225 /* Todo finish off the ei if required */
229 retval = mtd->erase(mtd, &ei);
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dnamei.c34 struct ext2_inode ei; local
41 retval = ext2fs_read_inode (fs, inode, &ei);
43 if (!LINUX_S_ISLNK (ei.i_mode)) {
50 if (ext2fs_inode_data_blocks(fs,&ei)) {
54 retval = io_channel_read_blk(fs->io, ei.i_block[0], 1, buffer);
61 pathname = (char *)&(ei.i_block[0]);
62 retval = open_namei(fs, root, dir, pathname, ei.i_size, 1,
/external/clang/lib/Analysis/
H A DLiveVariables.cpp139 for (typename SET::iterator it = B.begin(), ei = B.end(); it != ei; ++it) {
324 for (Stmt::child_iterator it = S->child_begin(), ei = S->child_end();
325 it != ei; ++it) {
456 ei = block->rend(); it != ei; ++it) {
470 for (CFG::const_iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it)
497 for (CFG::const_iterator it = cfg->begin(), ei = cfg->end(); it != ei;
[all...]
/external/llvm/utils/TableGen/
H A DTableGen.cpp175 for (unsigned ei = 0, ee = Elts->size(); ei != ee; ++ei)
176 OS << ' ' << (*Elts)[ei]->getName();
/external/icu4c/i18n/unicode/
H A Dfieldpos.h224 * @param ei the new value of the end index
227 void setEndIndex(int32_t ei) { fEndIndex = ei; } argument
/external/opencv/cv/src/
H A Dcvstereogc.cpp169 int e0 = -1, ei = 0, ej = 0, min_weight, weight; local
179 for( ei = v->first; ei != 0; ei = edges[ei].next )
181 if( edges[ei^vt].weight == 0 )
183 u = edges[ei].dst;
187 u->parent = ei ^ 1;
200 e0 = ei ^ vt;
207 u->parent = ei
[all...]
/external/linux-tools-perf/util/
H A Dhelp.c53 size_t ci, cj, ei; local
56 ci = cj = ei = 0;
57 while (ci < cmds->cnt && ei < excludes->cnt) {
58 cmp = strcmp(cmds->names[ci]->name, excludes->names[ei]->name);
62 ci++, ei++;
64 ei++;
/external/llvm/include/llvm/Analysis/
H A DProfileInfo.h200 typename std::map<const FType*, EdgeWeights>::iterator ei = EdgeInformation.find(*FI); local
201 dbgs() << "Edges for Function " << ei->first << ":\n";
202 for (typename EdgeWeights::iterator ewi = ei->second.begin(), ewe = ei->second.end();
/external/emma/lib/internal/
H A Dstamptool.jar ... return_state int scan int state StringBuffer b StringBuffer b int ei StringIndexOutOfBoundsException e private java.lang.String formatLabel (java ...
/external/dnsmasq/src/
H A Dlease.c26 unsigned long ei; local
76 &ei, daemon->dhcp_buff2, daemon->namebuff,
95 if (ei != 0)
96 lease->expires = (time_t)ei + now;
99 lease->length = ei;
103 lease->expires = (time_t)ei;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp235 for (CFG::iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it) {
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp483 ei = dstPreVisit.end(); it != ei; ++it) {
H A DExprEngineC.cpp34 for (ExplodedNodeSet::iterator it=CheckedSet.begin(), ei=CheckedSet.end();
35 it != ei; ++it) {
512 ei = IE->rend(); it != ei; ++it) {
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp189 ei = AU->stored_diag_end(); it != ei; ++it) {
/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp544 for (ArrayRef<CharSourceRange>::iterator it=Ranges.begin(), ei=Ranges.end();
545 it != ei; ++it) {

Completed in 1853 milliseconds

12