Home
last modified time | relevance | path

Searched refs:pointers (Results 1 – 25 of 1189) sorted by relevance

12345678910>>...48

/netbsd-src/external/gpl3/binutils/dist/libiberty/
H A Dsort.c47 void sort_pointers (size_t n, void **pointers, void **work) in sort_pointers() argument
105 bias = ((digit_t *) pointers) + j; in sort_pointers()
106 top = ((digit_t *) (pointers + n)) + j; in sort_pointers()
122 for (pointerp = pointers + n - 1; pointerp >= pointers; --pointerp) in sort_pointers()
127 pointerp = pointers; in sort_pointers()
128 pointers = work; in sort_pointers()
150 void **pointers; in main() local
158 pointers = XNEWVEC (void*, k); in main()
163 pointers[i] = (void *) random (); in main()
164 printf ("%x\n", pointers[i]); in main()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/
H A Dsort.c47 void sort_pointers (size_t n, void **pointers, void **work) in sort_pointers() argument
105 bias = ((digit_t *) pointers) + j; in sort_pointers()
106 top = ((digit_t *) (pointers + n)) + j; in sort_pointers()
122 for (pointerp = pointers + n - 1; pointerp >= pointers; --pointerp) in sort_pointers()
127 pointerp = pointers; in sort_pointers()
128 pointers = work; in sort_pointers()
150 void **pointers; in main() local
158 pointers = XNEWVEC (void*, k); in main()
163 pointers[i] = (void *) random (); in main()
164 printf ("%x\n", pointers[i]); in main()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libiberty/
H A Dsort.c47 void sort_pointers (size_t n, void **pointers, void **work) in sort_pointers() argument
105 bias = ((digit_t *) pointers) + j; in sort_pointers()
106 top = ((digit_t *) (pointers + n)) + j; in sort_pointers()
122 for (pointerp = pointers + n - 1; pointerp >= pointers; --pointerp) in sort_pointers()
127 pointerp = pointers; in sort_pointers()
128 pointers = work; in sort_pointers()
150 void **pointers; in main() local
158 pointers = XNEWVEC (void*, k); in main()
163 pointers[i] = (void *) random (); in main()
164 printf ("%x\n", pointers[i]); in main()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/
H A Dsort.c47 void sort_pointers (size_t n, void **pointers, void **work) in sort_pointers() argument
105 bias = ((digit_t *) pointers) + j; in sort_pointers()
106 top = ((digit_t *) (pointers + n)) + j; in sort_pointers()
122 for (pointerp = pointers + n - 1; pointerp >= pointers; --pointerp) in sort_pointers()
127 pointerp = pointers; in sort_pointers()
128 pointers = work; in sort_pointers()
150 void **pointers; in main() local
158 pointers = XNEWVEC (void*, k); in main()
163 pointers[i] = (void *) random (); in main()
164 printf ("%x\n", pointers[i]); in main()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DConstantInterpreter.rst85 the union of all pointers which can be cast to void.
140 even when there are live pointers to them. Pointers are only valid as
141 long as the blocks they point to are valid, so a block with pointers to
142 it whose lifetime ends is kept alive until all pointers to it go out of
160 Non-static blocks track all the pointers into them through an intrusive
161 doubly-linked list, required to adjust and invalidate all pointers when
163 all pointers to it are invalidated, emitting the appropriate diagnostics when
231 through pointer arithmetic, such as ``((int *)0x100)[20]``. Null pointers are
232 target pointers with a zero offset.
246 Void pointers, which can be built by casting any of the aforementioned
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/doc/
H A Dc-xstormy16.texi55 Like the @option{--16bit-pointers} command-line option this directive
56 indicates that the assembly code makes use of 16-bit pointers.
60 Like the @option{--32bit-pointers} command-line option this directive
61 indicates that the assembly code makes use of 32-bit pointers.
65 Like the @option{--no-pointers} command-line option this directive
66 indicates that the assembly code does not makes use pointers.
/netbsd-src/external/gpl3/binutils.old/dist/gas/doc/
H A Dc-xstormy16.texi55 Like the @option{--16bit-pointers} command-line option this directive
56 indicates that the assembly code makes use of 16-bit pointers.
60 Like the @option{--32bit-pointers} command-line option this directive
61 indicates that the assembly code makes use of 32-bit pointers.
65 Like the @option{--no-pointers} command-line option this directive
66 indicates that the assembly code does not makes use pointers.
/netbsd-src/external/apache2/llvm/dist/clang/docs/analyzer/developer-docs/
H A Dnullability.rst18 Taking a branch on nullable pointers are the same like taking branch on null unspecified pointers.
53 * We can assume that these pointers are not null and we lose coverage with the analyzer. (This can …
87 Annotations on multi level pointers
90pointers pointing to pointers would make the checker more complicated, because this way a vector o…
106 * Unannotated pointers are treated the same way as pointers annotated with nullability unspecified …
/netbsd-src/sys/dev/raidframe/
H A Drf_alloclist.c97 l->pointers[l->numPointers] = p; in rf_real_AddToAllocList()
113 RF_ASSERT(p->pointers[i]); in rf_FreeAllocList()
114 RF_Free(p->pointers[i], p->sizes[i]); in rf_FreeAllocList()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
H A Dasan_interface_test.cc396 std::vector<char *> pointers; in TEST() local
401 pointers.push_back((char*)malloc(size)); in TEST()
405 EXPECT_FALSE(__sanitizer_get_ownership(&pointers)); in TEST()
408 EXPECT_TRUE(__sanitizer_get_ownership(pointers[idx])); in TEST()
409 EXPECT_EQ(sizes[idx], __sanitizer_get_allocated_size(pointers[idx])); in TEST()
411 for (size_t i = 0, n = pointers.size(); i < n; i++) in TEST()
412 free(pointers[i]); in TEST()
H A Dasan_mac_test.cc141 void *pointers[kNumPointers]; in MallocIntrospectionLockWorker() local
143 pointers[i] = malloc(i + 1); in MallocIntrospectionLockWorker()
146 free(pointers[i]); in MallocIntrospectionLockWorker()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A DChangeLog.ptr56 for pointers.
91 POINTER_PLUS_EXPR for pointers and create the
94 for pointers instead of PLUS_EXPR.
104 PLUS_EXPR for pointers, instead use POINTER_PLUS_EXPR.
142 MIN_EXPR/MAX_EXPR for pointers type.
176 pointers.
185 MULT_EXPR is not used with pointers.
467 PLUS_EXPR for pointers.
489 instead of PLUS_EXPR for pointers.
499 instead of PLUS_EXPR for pointers.
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTargetCXXABI.def39 /// - the representation of member function pointers is adjusted
40 /// to not conflict with the 'thumb' bit of ARM function pointers;
58 /// - member function pointers,
81 /// - representation of member function pointers adjusted as in ARM.
88 /// - representation of member function pointers adjusted as in ARM.
94 /// - representation of member function pointers is adjusted, as in ARM;
/netbsd-src/external/apache2/llvm/dist/llvm/docs/HistoricalNotes/
H A D2002-06-25-MegaPatchInfo.txt18 wrapper around a vector of pointers to the sub-objects.
20 Now, instead of having a vector to pointers of objects, the objects are
25 formed directly from pointers to the LLVM value, and invalidation is much
66 of pointers, and that Pass subclasses now all receive references to Values
67 instead of pointers, because they may never be null.
H A D2001-02-06-TypeNotationDebateResp4.txt21 > > that most programmers TODAY do not understand pointers to member
28 > In either case, I would have to look up an example to write pointers to
35 declare these pointers, and the syntax is inconsistent with the method
38 > But pointers to member functions are nowhere near as common as arrays.
64 > make function pointers easier but makes arrays much more difficult seems
67 This is not about function pointers. This is about consistency in the
H A D2001-02-06-TypeNotationDebateResp1.txt28 > that most programmers TODAY do not understand pointers to member
35 In either case, I would have to look up an example to write pointers to
38 But pointers to member functions are nowhere near as common as arrays. And
43 make function pointers easier but makes arrays much more difficult seems
H A D2001-02-13-Reference-MemoryResponse.txt9 > references: constrained pointers that cannot be manipulated: added and
14 > C++ pointers could be promoted to references in the LLVM
19 compiler could generate references instead of pointers with fairly
/netbsd-src/external/gpl2/xcvs/dist/m4/
H A Dcvs_func_printf_ptr.m41 # Determine whether printf supports %p for printing pointers.
22 # Determine whether printf supports %p for printing pointers.
41 for printing pointers.])
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DStatepoints.rst43 results ("derived pointers") which point outside of the allocation or
46 allocation, but such "exterior derived pointers" may be visible to the
69 #. A safepoint is a location at which pointers visible to the compiled
96 ensure that all pointers can be read and updated if desired.
121 non-integral pointers which has not been addressed upstream. To work around
147 #. recording a mapping of live pointers (and the allocation they're
153 its result, and returns updated values for any live pointers to
156 Note that the task of identifying all live pointers to garbage
227 needs to update any of these pointers during the call, it knows
316 "Interior derived pointers" remain within the bounds of the allocation
[all …]
H A DOpaquePointers.rst11 types, there is a desire to remove pointee types from pointers.
22 LLVM IR pointers can be cast back and forth between pointers with different
72 <LangRef.html#parameter-attributes>`_ arguments are pointers, but backends need
92 Making everything use opaque pointers in one huge commit is infeasible. This
113 * Add option to internally treat all pointer types opaque pointers and see what
/netbsd-src/lib/libform/
H A Dgdbinit10 print "WARNING: backward pointers inconsistent"
15 print "WARNING: forward pointers inconsistent"
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/
H A DREADME-sparse_array.md8 tree contains a block of pointers to either the user supplied leaf values or
14 SA_BLOCK_MAX Specifies the number of pointers in each block
48 index 0 results in the allocation of a top level node full of null pointers
155 Note: sparse arrays only include pointers to types.
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DADMISSIONS.pod115 NAMING_AUTHORITY_get0_get0_authorityText(), functions return pointers
125 and ADMISSION_SYNTAX_get0_contentsOfAdmissions() functions return pointers
136 functions return pointers to those values within the object.
150 functions return pointers to those values within the object.
H A DX509_SIG_get0.pod18 X509_SIG_get0() returns pointers to the algorithm identifier and digest
20 except the pointers returned are not constant and can be modified:
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DADMISSIONS.pod115 NAMING_AUTHORITY_get0_get0_authorityText(), functions return pointers
125 and ADMISSION_SYNTAX_get0_contentsOfAdmissions() functions return pointers
136 functions return pointers to those values within the object.
150 functions return pointers to those values within the object.

12345678910>>...48