Searched defs:ib (Results 1 - 25 of 29) sorted by last modified time

12

/external/valgrind/main/helgrind/
H A Dlibhb_core.c2136 UInt ia, ib, useda, usedb; local
2156 ia = ib = 0;
2165 tl_assert(ib >= 0 && ib <= usedb);
2167 if (ia == useda && ib == usedb) {
2171 } else if (ia == useda && ib != usedb) {
2173 ScalarTS* tmpb = &b->ts[ib];
2177 ib++;
2179 } else if (ia != useda && ib == usedb) {
2190 ScalarTS* tmpb = &b->ts[ib];
2239 Word ia, ib, useda, usedb; local
[all...]
/external/v8/src/arm/
H A Dconstants-arm.h335 ib = (8|4|0) << 21, // Increment before. enumerator in enum:v8::internal::BlockAddrMode
/external/v8/src/
H A Dobjects.cc6784 static inline bool CompareStringContents(IteratorA* ia, IteratorB* ib) { argument
6785 // General slow case check. We know that the ia and ib iterators
6789 uint32_t cb = ib->GetNext();
6847 VectorIterator<char> ib(content.ToAsciiVector());
6848 return CompareStringContents(ia, &ib);
6850 VectorIterator<uc16> ib(content.ToUC16Vector());
6851 return CompareStringContents(ia, &ib);
6914 VectorIterator<uc16> ib(rhs_content.ToUC16Vector());
6915 return CompareStringContents(&buf1, &ib);
6928 VectorIterator<char> ib(rhs_conten
[all...]
/external/speex/libspeex/
H A Dsmallft.c45 int k1, l1, l2, ib; local
70 ib=nf-i+1;
71 ifac[ib+1]=ifac[ib];
/external/sqlite/android/
H A DOldPhoneNumberUtils.cpp197 int ia, ib; local
207 ib = strlen(b);
208 if (ia == 0 || ib == 0) {
214 ib--;
218 while (ia >= 0 && ib >=0) {
230 cb = b[ib];
233 ib--;
242 ia--; ib--; matched++;
260 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
273 if (matchIntlPrefix(a, ia + 1) && matchIntlPrefix(b, ib
[all...]
/external/srec/srec/cfront/
H A Dsp_fft.c174 unsigned m, n, n2, i, j, i0, is, id, ii, ib; local
195 ib = 0;
202 butterflyIndex[ib++] = butterflies;
212 butterflyIndex[ib] = i0;
216 ii = ib;
224 ib++;
/external/quake/quake/src/QW/client/
H A Dview.c544 int ir, ig, ib; local
594 ib = i*a + b;
599 if (ib > 255)
600 ib = 255;
604 ramps[2][i] = gammatable[ib];
614 ib = basepal[2];
619 newpal[2] = ramps[2][ib];
/external/skia/src/core/
H A DSkScan_Path.cpp463 InverseBlitter ib; local
467 ib.setBlitter(blitter, clipRgn.getBounds(), shiftEdgesUp);
468 blitter = &ib;
/external/qemu/distrib/libpng-1.2.19/
H A Dpngrtran.c474 int ir, ig, ib; local
493 for (ib = 0; ib < num_blue; ib++)
495 int d_index = index_g | ib;
496 /* int db = abs(ib - b); */
497 int db = ((ib > b) ? ib - b : b - ib);
/external/opencv/ml/src/
H A Dml_inner_functions.cpp1090 int ib = ((const CvSampleResponsePair*)b)->index; local
1092 return ra < rb ? -1 : ra > rb ? 1 : ia - ib;
/external/llvm/lib/CodeGen/
H A DSpillPlacement.cpp240 unsigned ib = bundles->getBundle(I->Number, 0); local
241 activate(ib);
242 nodes[ib].addBias(Freq * Bias[I->Entry], 1);
261 unsigned ib = bundles->getBundle(*I, 0); local
263 activate(ib);
265 nodes[ib].addBias(-Freq, 1);
274 unsigned ib = bundles->getBundle(Number, 0); local
278 if (ib == ob)
280 activate(ib);
282 if (nodes[ib]
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h69 ib, enumerator in enum:llvm::ARM_AM::AMSubMode
78 case ARM_AM::ib: return "ib";
/external/libpng/
H A Dpngrtran.c498 int ir, ig, ib; local
518 for (ib = 0; ib < num_blue; ib++)
520 int d_index = index_g | ib;
521 /* int db = abs(ib - b); */
522 int db = ((ib > b) ? ib - b : b - ib);
/external/libvorbis/lib/
H A Dsmallft.c43 int k1, l1, l2, ib; local
68 ib=nf-i+1;
69 ifac[ib+1]=ifac[ib];
/external/libvpx/vp8/encoder/
H A Dencodemb.c259 static void optimize_b(MACROBLOCK *mb, int ib, int type, argument
294 b = &mb->block[ib];
295 d = &mb->e_mbd.block[ib];
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DBIHTree.java81 private void initTriList(FloatBuffer vb, IndexBuffer ib) { argument
85 int vert = ib.get(i) * 3;
90 vert = ib.get(i + 1) * 3;
95 vert = ib.get(i + 2) * 3;
118 IndexBuffer ib = mesh.getIndexBuffer();
119 if (ib == null) {
120 ib = new VirtualIndexBuffer(mesh.getVertexCount(), mesh.getMode());
122 ib = new WrappedIndexBuffer(mesh);
125 numTris = ib.size() / 3;
126 initTriList(vb, ib);
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/
H A DWrappedIndexBuffer.java22 private final IndexBuffer ib; field in class:WrappedIndexBuffer
26 this.ib = mesh.getIndexBuffer();
49 return ib.get(superIdx);
54 return ib.getBuffer();
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
H A DLwjglAudioRenderer.java63 private IntBuffer ib = BufferUtils.createIntBuffer(1); field in class:LwjglAudioRenderer
186 ib = BufferUtils.createIntBuffer(channels.length);
193 ib.position(0).limit(1);
194 ALC10.alcGetInteger(device, EFX10.ALC_EFX_MAJOR_VERSION, ib);
195 int major = ib.get(0);
196 ib.position(0).limit(1);
197 ALC10.alcGetInteger(device, EFX10.ALC_EFX_MINOR_VERSION, ib);
198 int minor = ib.get(0);
201 ALC10.alcGetInteger(device, EFX10.ALC_MAX_AUXILIARY_SENDS, ib);
202 auxSends = ib
[all...]
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
H A DMeshLoader.java93 private IntBuffer ib; field in class:MeshLoader
124 ib = null;
150 if (ib != null){
151 ib.put(index);
203 ib = null;
206 ib = BufferUtils.createIntBuffer(numIndices);
208 vb.setupData(Usage.Static, indicesPerFace, Format.UnsignedInt, ib);
523 ib = BufferUtils.createIntBuffer(faceCount * 3);
525 vb.setupData(Usage.Static, 3, Format.UnsignedInt, ib);
528 ib
[all...]
/external/grub/netboot/
H A Dsk_g16.c422 struct init_block ib; member in struct:SK_ram
951 (p->ram)->ib.mode = mode; /* Set operation mode */
955 (p->ram)->ib.paddr[i] = *(nic->node_addr+i);
960 (p->ram)->ib.laddr[i] = 0; /* We do not use logical addressing */
965 (p->ram)->ib.rdrp = (int) p->rmdhead | RMDNUMMASK;
966 (p->ram)->ib.tdrp = (int) p->tmdhead | TMDNUMMASK;
1015 (unsigned int) &(p->ram)->ib);
1135 (unsigned int) &(p->ram)->ib);
/external/icu4c/layout/
H A DIndicRearrangementProcessor.cpp69 le_int32 ia, ib, ic, id, ix, x; local
125 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
139 glyphStorage.setCharIndex(lastGlyph, ib, success);
146 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
159 glyphStorage.setCharIndex(lastGlyph - 1, ib, success);
260 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
277 glyphStorage.setCharIndex(lastGlyph, ib, success);
285 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
301 glyphStorage.setCharIndex(lastGlyph - 1, ib, success);
316 ib
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/e2fsprogs/e2fsck/
H A Dpass1b.c107 intptr_t ia, ib; local
110 ib = (intptr_t)b;
112 return (ia-ib);
/external/dbus/bus/
H A Dconfig-parser.c2965 DBusList *ib; local
2968 ib = b;
2970 while (ia != NULL && ib != NULL)
2972 if (elements_equal (ia->data, ib->data))
2975 ib = _dbus_list_get_next_link (&b, ib);
2978 return ia == NULL && ib == NULL;
2986 DBusList *ib; local
2989 ib = b;
2991 while (ia != NULL && ib !
[all...]
/external/clang/test/Analysis/engine/
H A Dreplay-without-inlining.c14 const unsigned char *ib; member in struct:__anon4002
24 return input->ib[(input->cur)++];
50 int bitmapImageRepFromIFF(IB st, const unsigned char *ib, int il) { argument
52 st.ib = ib;

Completed in 845 milliseconds

12