HomeSort by relevance Sort by last modified time
    Searched refs:sib (Results 1 - 24 of 24) 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();
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicBlur.java 53 ScriptIntrinsicBlur sib = new ScriptIntrinsicBlur(id, rs); local
54 sib.setRadius(5.f);
55 return sib;
  /external/tcpdump/
makemib 207 for (sib = child[parent]; sib != ""; sib = sibling[sib])
208 if (oid[sib] == value) {
209 if (new != sib)
214 sib, value
  /frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
ScriptIntrinsicBlur.java 53 ScriptIntrinsicBlur sib = new ScriptIntrinsicBlur(id, rs); local
54 sib.setRadius(5.f);
55 return sib;
  /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++);
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_base.cpp 468 SIB& sib = *(SIB*)stream;
470 // we need SIB if
482 // must have to use SIB to encode 'DS: based'
485 modrm.rm = 4; // 100 - have SIB
487 sib.base = 5; // 101 - none
488 sib.index = 4; // 100 - none
489 sib.scale = 0; //
490 ++stream; // bypass SIB
    [all...]
dec_base.cpp 475 // we have only modrm. no sib, no disp.
484 const SIB& sib = *(SIB*)*pbuf; local
485 // check whether we have a sib
487 // yes, we have SIB
489 // scale = sib.scale == 0 ? 0 : (1<<sib.scale);
490 scale = (1<<sib.scale);
491 if (sib.index != 4)
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 40 #define scaleFromSIB(sib) (((sib) & 0xc0) >> 6)
41 #define indexFromSIB(sib) (((sib) & 0x38) >> 3)
42 #define baseFromSIB(sib) ((sib) & 0x7)
129 ENTRY(sib) \
311 * SIBIndex - All possible values of the SIB index field.
313 * sib is synonymous with NONE.
314 * Vector SIB: index can be XMM or YMM
507 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::__anon10533
432 debug("A R/M register operand may not have a SIB byte");
460 /// fields of an internal instruction (and possibly its SIB byte) to a memory
464 /// @param insn - The instruction to extract Mod, R/M, and SIB fields
470 // 1. basereg (register) The R/M base, or (if there is a SIB) the
471 // SIB base
472 // 2. scaleamount (immediate) 1, or (if there is a SIB) the specified
474 // 3. indexreg (register) x86_registerNONE, or (if there is a SIB)
508 // We can tell whether it is VSIB or SIB after instruction ID is decoded,
598 // sib and sib64 were handled in the top-level if, so they're onl
    [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/opt/telephony/src/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/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmMmiCode.java 119 String sia, sib, sic; // Service Info a,b,c field in class:GsmMmiCode
145 7 = SIB
192 ret.sib = makeEmptyNull(m.group(MATCH_GROUP_SIB));
672 int serviceClass = siToServiceClass(sib);
714 // sib = basic service group
717 int serviceClass = siToServiceClass(sib);
732 // sib = old pwd
736 String oldPwd = sib;
774 // sib = new PIN
777 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 1278 milliseconds