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

  /external/llvm/bindings/python/llvm/
disassembler.py 11 from ctypes import POINTER
73 buf = cast(c_char_p(source), POINTER(c_ubyte))
98 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents
103 b = cast(addressof(buf) + offset, POINTER(c_ubyte))
124 library.LLVMDisasmInstruction.argtypes = [Disassembler, POINTER(c_ubyte),
131 POINTER(c_uint64), c_uint64,
132 POINTER(c_char_p))
core.py 16 from ctypes import POINTER
88 POINTER(c_object_p), POINTER(c_char_p)]
common.py 10 from ctypes import POINTER
22 c_object_p = POINTER(c_void_p)
  /frameworks/native/opengl/libs/GLES_trace/tools/
testgenapi.py 60 self.assertEqual(args, [("a", DataType.POINTER)])
63 self.assertEqual(args, [("exponent", DataType.POINTER)])
genapi.py 47 if self.name == "pointer": # pointers map to the INT DataType
55 or self.name == "pointer" or self.name == "enum":
73 DataType.POINTER = DataType("pointer")
97 "GLeglImageOES":DataType.POINTER,
185 <!--(if argtype == DataType.POINTER)-->
189 <!--(if retDataType == DataType.POINTER)-->
207 All pointer declarations are of type DataType.POINTER
212 return DataType.POINTER
    [all...]
  /external/quake/quake/src/QW/client/
md4.c 24 /* POINTER defines a generic pointer type */
25 typedef unsigned char *POINTER;
147 memcpy((POINTER)&context->buffer[index], (POINTER)input, partLen);
159 memcpy ((POINTER)&context->buffer[index], (POINTER)&input[i], inputLen-i);
184 memset ((POINTER)context, 0, sizeof (*context));
255 memset ((POINTER)x, 0, sizeof (x));
  /external/clang/bindings/python/tests/cindex/
test_type.py 65 assert fields[6].type.kind == TypeKind.POINTER
70 assert fields[7].type.kind == TypeKind.POINTER
71 assert fields[7].type.get_pointee().kind == TypeKind.POINTER
72 assert fields[7].type.get_pointee().get_pointee().kind == TypeKind.POINTER
89 assert fields[0].type.get_array_element_type().kind == TypeKind.POINTER
  /external/v8/src/
string-stream.h 93 FmtElm(void* value) : type_(POINTER) { // NOLINT
99 enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
  /external/grub/netboot/
smc9000.c 245 _outw(PTR_AUTOINC, smc9000_base + POINTER);
297 _outw( PTR_AUTOINC | PTR_READ, smc9000_base + POINTER );
336 _outw(PTR_READ | PTR_RCV | PTR_AUTOINC, smc9000_base + POINTER);
smc9000.h 127 #define POINTER 6
  /bionic/libc/stdio/
vfscanf.c 56 #define POINTER 0x00020 /* p: void * (as hex) */
272 case 'p': /* pointer format is like hex */
273 flags |= POINTER | PFXOK;
582 if (flags & POINTER)
711 * (just after `['). Return a pointer to the character past the
  /external/clang/bindings/python/clang/
cindex.py 85 c_object_p = POINTER(c_void_p)
662 # pointer constant that has integral type (e.g., int or long) and is the same
663 # size and alignment as a pointer.
667 # match the size of a pointer).
697 # [C++0x 2.14.7] C++ Pointer Literal.
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Field.java 27 /** This variable indicates the level of the pointer. */
33 /** This variable indicates if the field is a function pointer. */
92 DataType dataType = pointerLevel == 0 ? DataType.getDataType(type, blenderContext) : DataType.POINTER;
94 case POINTER:
96 Pointer pointer = new Pointer(pointerLevel, function, blenderContext); local
97 pointer.fill(blenderInputStream);
98 value = pointer;
100 Pointer[] data = new Pointer[dataToRead];
102 Pointer pointer = new Pointer(pointerLevel, function, blenderContext); local
    [all...]
Structure.java 179 Pointer first = (Pointer) this.getFieldValue("first");
180 Pointer last = (Pointer) this.getFieldValue("last");
188 first = (Pointer) structure.getFlatFieldValue("next");
276 CHARACTER, SHORT, INTEGER, LONG, FLOAT, DOUBLE, VOID, STRUCTURE, POINTER;
  /external/sonivox/jet_tools/JetCreator/
eas.py 488 return cast(wave_fmt_chunk, POINTER(WAVEFORMAT)).contents
609 eas_dll.EAS_Config.restype = POINTER(EAS_Config)
    [all...]

Completed in 278 milliseconds