HomeSort by: relevance | last modified time | path
    Searched refs:POINTER (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/external/gpl2/libmalloc/dist/
vm-limit.c 33 typedef void *POINTER;
57 extern POINTER (*__morecore) ();
59 register POINTER cp;
117 (*warn_function) ("Warning: memory in use exceeds lisp pointer size");
125 POINTER start;
mem-limits.h 64 /* The important properties of this type are that 1) it's a pointer, and
68 typedef void *POINTER;
70 typedef char *POINTER;
78 #define NULL ((POINTER) 0)
80 extern POINTER start_of_data ();
103 static POINTER data_space_start;
ralloc.c 38 /* The important properties of this type are that 1) it's a pointer, and
43 typedef void *POINTER;
50 typedef char *POINTER;
56 typedef char *POINTER;
71 typedef void *POINTER;
82 #define NIL ((POINTER) 0)
98 static POINTER (*real_morecore) ();
101 static POINTER virtual_break_value;
105 static POINTER break_value;
147 POINTER start
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
tls.h 27 Setting per-thread value: gl_tls_set (name, pointer);
32 A destructor is a function pointer of type 'void (*) (void *)', called
110 # define gl_tls_set(NAME, POINTER) \
115 if (pthread_setspecific ((NAME).key, (POINTER)) != 0) \
119 (NAME).singlethread_value = (POINTER); \
179 # define gl_tls_set(NAME, POINTER) \
184 if (!pth_key_setdata ((NAME).key, (POINTER))) \
188 (NAME).singlethread_value = (POINTER); \
248 # define gl_tls_set(NAME, POINTER) \
253 if (thr_setspecific ((NAME).key, (POINTER)) != 0)
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
tls.h 27 Setting per-thread value: gl_tls_set (name, pointer);
32 A destructor is a function pointer of type 'void (*) (void *)', called
110 # define gl_tls_set(NAME, POINTER) \
115 if (pthread_setspecific ((NAME).key, (POINTER)) != 0) \
119 (NAME).singlethread_value = (POINTER); \
179 # define gl_tls_set(NAME, POINTER) \
184 if (!pth_key_setdata ((NAME).key, (POINTER))) \
188 (NAME).singlethread_value = (POINTER); \
248 # define gl_tls_set(NAME, POINTER) \
253 if (thr_setspecific ((NAME).key, (POINTER)) != 0)
    [all...]
  /src/external/gpl2/grep/dist/lib/
obstack.c 57 #define POINTER void *
59 #define POINTER char *
158 POINTER (*chunkfun) (long);
161 POINTER (*chunkfun) ();
216 POINTER (*chunkfun) (POINTER, long);
217 void (*freefun) (POINTER, POINTER);
219 POINTER (*chunkfun) ();
222 POINTER arg
    [all...]
  /src/external/apache2/llvm/dist/llvm/bindings/python/llvm/
bit_reader.py 9 from ctypes import POINTER
27 library.LLVMParseBitcode2.argtypes = [MemoryBuffer, POINTER(c_object_p)]
disassembler.py 10 from ctypes import POINTER
100 buf = cast(c_char_p(source), POINTER(c_ubyte))
125 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents
130 b = cast(addressof(buf) + offset, POINTER(c_ubyte))
155 library.LLVMDisasmInstruction.argtypes = [Disassembler, POINTER(c_ubyte),
166 POINTER(c_uint64), c_uint64,
167 POINTER(c_char_p))
common.py 9 from ctypes import POINTER
25 c_object_p = POINTER(c_void_p)
object.py 81 from ctypes import POINTER
465 library.LLVMGetSectionContents.restype = POINTER(c_char)
core.py 16 from ctypes import POINTER
507 POINTER(c_object_p), POINTER(c_char_p)]
537 POINTER(c_char_p)]
  /src/sys/arch/sparc64/include/
asm.h 17 #define POINTER .xword
39 #define POINTER .word
  /src/external/cddl/osnet/dist/tools/ctf/cvt/
fixup_tdescs.c 47 * Due to 4432619, the 6.1 compiler will sometimes incorrectly generate pointer
49 * In some cases, when faced with a pointer to a foo_t, the compiler will
50 * sometimes generate a stab that describes a pointer to a struct foo.
81 if (ml->ml_type->t_type != POINTER || ml->ml_type->t_name ||
82 ml->ml_type->t_tdesc->t_type != POINTER ||
95 p2->t_type = POINTER;
100 p1->t_type = POINTER;
132 if (ml->ml_type->t_type != POINTER ||
144 ptr->t_type = POINTER;
198 * a pointer to a CPU structure, the failed merges can cause massive amount
    [all...]
ctftools.h 149 POINTER,
238 tdesc_t *t_next; /* Name hash next pointer */
241 tdesc_t *t_hash; /* ID hash next pointer */
  /src/external/gpl3/gcc.old/dist/libobjc/
accessors.m 52 #define ACCESSORS_HASH(POINTER) ((((size_t)POINTER >> 8) ^ (size_t)POINTER) & (ACCESSORS_NUMBER_OF_LOCKS - 1))
  /src/external/gpl3/gcc.old/dist/gcc/config/mips/
mips-ftypes.def 31 POINTER for ptr_type_node
46 DEF_MIPS_FTYPE (2, (DI, POINTER, SI))
62 DEF_MIPS_FTYPE (2, (SI, POINTER, SI))
280 DEF_MIPS_FTYPE (3, (VOID, V2DF, POINTER, SI))
284 DEF_MIPS_FTYPE (3, (VOID, V4SF, POINTER, SI))
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
dump-parse-tree.cc 796 if (attr->pointer)
797 fputs (" POINTER", dumpfile);
799 fputs (" SUBREF-ARRAY-POINTER", dumpfile);
801 fputs (" CRAY-POINTER", dumpfile);
860 fputs (" POINTER-COMP", dumpfile);
862 fputs (" PROC-POINTER-COMP", dumpfile);
966 if (c->attr.pointer)
967 fputs (" POINTER", dumpfile);
1808 case OMP_DEFAULTMAP_CAT_POINTER: dfltmap = "POINTER"; break;
2294 fputs ("POINTER ASSIGN ", dumpfile)
    [all...]
  /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
test_type.py 102 self.assertEqual(fields[6].type.kind, TypeKind.POINTER)
110 self.assertEqual(fields[7].type.kind, TypeKind.POINTER)
111 self.assertEqual(fields[7].type.get_pointee().kind, TypeKind.POINTER)
112 self.assertEqual(fields[7].type.get_pointee().get_pointee().kind, TypeKind.POINTER)
145 self.assertEqual(fields[0].type.get_array_element_type().kind, TypeKind.POINTER)
  /src/external/bsd/iscsi/dist/src/lib/
md5c.c 58 typedef unsigned char *POINTER;
228 memcpy((POINTER)&context->buffer[idx],
241 memcpy((POINTER)&context->buffer[idx], &input[i],
274 ZEROIZE((POINTER)(void *)context, sizeof(*context));
367 ZEROIZE((POINTER)(void *)x, sizeof (x));
  /src/common/lib/libc/md/
md5c.c 56 typedef unsigned char *POINTER;
220 memcpy((POINTER)&context->buffer[idx], input, partLen);
263 ZEROIZE((POINTER)(void *)context, sizeof(*context));
354 ZEROIZE((POINTER)(void *)x, sizeof (x));
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 145 c_object_p = POINTER(c_void_p)
547 tokens_memory = POINTER(Token)()
560 tokens_array = cast(tokens_memory, POINTER(Token * count)).contents
973 # pointer constant that has integral type (e.g., int or long) and is the same
974 # size and alignment as a pointer.
978 # match the size of a pointer).
1008 # [C++0x 2.14.7] C++ Pointer Literal.
2063 TypeKind.POINTER = TypeKind(101)
2338 For pointer types, returns the type of the pointee.
2368 Retrieve the class type of the member pointer type
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
print.c 63 } POINTER;
70 POINTER Item;
84 POINTER fmt;
158 IN POINTER *p
962 IN POINTER *p
1066 g - Pointer to GUID
1068 D - pointer to Device Path with normal ending.
  /src/lib/libc/stdio/
vfscanf.c 82 #define POINTER 0x0010 /* p: void * (as hex) */
174 wchar_t *wcp; /* handy wide-character pointer */
322 case 'p': /* pointer format is like hex */
323 flags |= POINTER | PFXOK;
790 if (flags & POINTER)
853 * (just after `['). Return a pointer to the character past the
vfwscanf.c 77 #define POINTER 0x10 /* p: void * (as hex) */
167 char *mbp; /* multibyte string pointer for %c %s %[ */
328 case 'p': /* pointer format is like hex */
329 flags |= POINTER | PFXOK;
696 if (flags & POINTER)
  /src/external/bsd/file/dist/python/
magic.py 68 magic_t = POINTER(magic_set)

Completed in 65 milliseconds

1 2