HomeSort by relevance Sort by last modified time
    Searched refs:sib (Results 1 - 20 of 20) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
Grid.java 61 ShortBuffer sib = BufferUtils.createShortBuffer(2 * lineCount); local
76 sib.put( (short) (curIndex++) );
77 sib.put( (short) (curIndex++) );
89 sib.put( (short) (curIndex++) );
90 sib.put( (short) (curIndex++) );
94 sib.flip();
97 setBuffer(Type.Index, 2, sib);
SkeletonWire.java 83 ShortBuffer sib = BufferUtils.createShortBuffer(numConnections * 2); local
84 ib.setupData(Usage.Static, 2, Format.UnsignedShort, sib);
88 writeConnections(sib, bone);
89 sib.flip();
  /external/tcpdump/
makemib 207 for (sib = child[parent]; sib != ""; sib = sibling[sib])
208 if (oid[sib] == value) {
209 if (new != sib)
214 sib, value
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapTextPage.java 144 ShortBuffer sib = (ShortBuffer) ib.getData(); local
163 sib.rewind();
164 sib = BufferUtils.ensureLargeEnough(sib, triCount * 3);
165 sib.limit(triCount * 3);
166 ib.updateData(sib);
177 sib.put(idx);
185 fq.appendIndices(sib, i);
192 sib.rewind();
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
PQTorus.java 198 ShortBuffer sib = createShortBuffer(6 * vertCount); local
200 sib.put(new short[] {
209 for (int i = 0, len = sib.capacity(); i < len; i++) {
210 int ind = sib.get(i);
213 sib.put(i, (short) ind);
216 sib.put(i, (short) ind);
219 sib.rewind();
224 setBuffer(Type.Index, 3, sib);
Torus.java 186 ShortBuffer sib = BufferUtils.createShortBuffer(3 * triCount); local
187 setBuffer(Type.Index, 3, sib);
201 sib.put((short)i0++);
202 sib.put((short)i2);
203 sib.put((short)i1);
204 sib.put((short)i1++);
205 sib.put((short)i2++);
206 sib.put((short)i3++);
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 39 #define scaleFromSIB(sib) (((sib) & 0xc0) >> 6)
40 #define indexFromSIB(sib) (((sib) & 0x38) >> 3)
41 #define baseFromSIB(sib) ((sib) & 0x7)
128 ENTRY(sib) \
310 * SIBIndex - All possible values of the SIB index field.
312 * sib is synonymous with NONE.
323 * SIBBase - All possible values of the SIB base field
503 uint8_t sib; member in struct:InternalInstruction
    [all...]
X86DisassemblerDecoder.c 913 * readSIB - Consumes the SIB byte to determine addressing information for an
916 * @param insn - The instruction whose SIB byte is to be read.
917 * @return - 0 if the SIB byte was successfully read; nonzero otherwise.
933 dbgprintf(insn, "SIB-based addressing doesn't work in 16-bit mode");
946 if (consumeByte(insn, &insn->sib))
949 index = indexFromSIB(insn->sib) | (xFromREX(insn->rexPrefix) << 3);
963 switch (scaleFromSIB(insn->sib)) {
978 base = baseFromSIB(insn->sib) | (bFromREX(insn->rexPrefix) << 3);
998 debug("Cannot have Mod = 0b11 and a SIB byte");
1056 * readModRM - Consumes all addressing information (ModR/M byte, SIB byte, an
    [all...]
X86Disassembler.cpp 65 sib = 504, enumerator in enum:llvm::X86::__anon9228
430 debug("A R/M register operand may not have a SIB byte");
458 /// fields of an internal instruction (and possibly its SIB byte) to a memory
462 /// @param insn - The instruction to extract Mod, R/M, and SIB fields
468 // 1. basereg (register) The R/M base, or (if there is a SIB) the
469 // SIB base
470 // 2. scaleamount (immediate) 1, or (if there is a SIB) the specified
472 // 3. indexreg (register) x86_registerNONE, or (if there is a SIB)
563 // sib and sib64 were handled in the top-level if, so they're only
607 /// translateRM - Translates an operand stored in the R/M (and possibly SIB)
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebelement.cpp 661 for (Node* sib = m_element->nextSibling(); sib; sib = sib->nextSibling()) {
662 if (!sib->isElementNode())
664 Element* e = static_cast<Element*>(sib);
679 for (Node* sib = m_element->previousSibling(); sib; sib = sib->previousSibling())
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaMmiCode.java 60 String sia, sib, sic; // Service Info a,b,c field in class:CdmaMmiCode
78 7 = SIB
114 ret.sib = makeEmptyNull(m.group(MATCH_GROUP_SIB));
196 // sib = new PIN
199 String newPin = sib;
  /external/elfutils/libcpu/
i386_data.h 283 /* SIB */
284 uint_fast8_t sib = data[1]; local
289 || ((modrm & 0xc7) == 0x4 && (sib & 0x7) == 0x5))
301 if ((modrm & 0xc0) != 0 || (sib & 0x3f) != 0x25
316 if ((modrm & 0xc7) != 0x4 || (sib & 0x7) != 0x5)
321 (prefixes & has_rex_b) ? hiregs[sib & 7] :
322 (prefixes & has_addr16) ? dregs[sib & 7] :
324 aregs[sib & 7]);
332 if ((sib & 0x38) != 0x20
343 ? hiregs[(sib >> 3) & 7]
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmMmiCode.java 116 String sia, sib, sic; // Service Info a,b,c field in class:GsmMmiCode
142 7 = SIB
189 ret.sib = makeEmptyNull(m.group(MATCH_GROUP_SIB));
653 int serviceClass = siToServiceClass(sib);
695 // sib = basic service group
698 int serviceClass = siToServiceClass(sib);
713 // sib = old pwd
717 String oldPwd = sib;
755 // sib = new PIN
758 String newPin = sib;
    [all...]
  /external/v8/src/ia32/
disasm-ia32.cc 402 byte sib = *(modrmp + 1); local
404 get_sib(sib, &scale, &index, &base);
434 byte sib = *(modrmp + 1); local
436 get_sib(sib, &scale, &index, &base);
450 // No sib.
    [all...]
  /external/v8/src/x64/
disasm-x64.cc 471 // Codes for SIB byte.
472 byte sib = *(modrmp + 1); local
474 get_sib(sib, &scale, &index, &base);
476 // index == rsp means no index. Only use sib byte with no index for
506 byte sib = *(modrmp + 1); local
508 get_sib(sib, &scale, &index, &base);
534 // No sib.
1046 if (rm == 4) { // SIB byte present.
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesw.h 731 NCursesWindow* sib; // next subwindow of parent member in class:NCursesWindow
770 : w(rhs.w), alloced(rhs.alloced), par(rhs.par), subwins(rhs.subwins), sib(rhs.sib)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
cursesw.h 731 NCursesWindow* sib; // next subwindow of parent member in class:NCursesWindow
770 : w(rhs.w), alloced(rhs.alloced), par(rhs.par), subwins(rhs.subwins), sib(rhs.sib)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
cursesw.h 731 NCursesWindow* sib; // next subwindow of parent member in class:NCursesWindow
770 : w(rhs.w), alloced(rhs.alloced), par(rhs.par), subwins(rhs.subwins), sib(rhs.sib)
    [all...]
  /external/valgrind/main/VEX/priv/
guest_amd64_toIR.c 804 in SIB address modes, and is generally rarely used.
2388 UChar sib = getUChar(delta); local
2459 UChar sib = getUChar(delta); local
2506 UChar sib = getUChar(delta); local
2602 UChar sib = getUChar(delta); local
    [all...]
guest_x86_toIR.c 1572 UChar sib = getIByte(delta); local
1632 UChar sib = getIByte(delta); local
1673 UChar sib = getIByte(delta); local
1753 UChar sib = getIByte(delta); local
    [all...]

Completed in 694 milliseconds