Home
last modified time | relevance | path

Searched full:pointers (Results 1 – 25 of 2675) sorted by relevance

12345678910>>...107

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/
H A Denvironments.h29 _POSIX_V7_ILP32_OFF32 32bit int, long, pointers, and off_t type
30 _POSIX_V7_ILP32_OFFBIG 32bit int, long, and pointers and larger off_t type
32 _POSIX_V7_LP64_OFF32 64bit long and pointers and 32bit off_t type
33 _POSIX_V7_LPBIG_OFFBIG 64bit long and pointers and large off_t type
44 /* We can never provide environments with 32-bit wide pointers. */
51 /* We also have no use (for now) for an environment with bigger pointers
57 /* By default we have 64-bit wide `long int', pointers and `off_t'. */
64 /* By default we have 32-bit wide `int', `long int', pointers and `off_t'
76 /* We can never provide environments with 64-bit wide pointers. */
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/
H A Denvironments.h29 _POSIX_V7_ILP32_OFF32 32bit int, long, pointers, and off_t type
30 _POSIX_V7_ILP32_OFFBIG 32bit int, long, and pointers and larger off_t type
32 _POSIX_V7_LP64_OFF32 64bit long and pointers and 32bit off_t type
33 _POSIX_V7_LPBIG_OFFBIG 64bit long and pointers and large off_t type
44 /* We can never provide environments with 32-bit wide pointers. */
51 /* We also have no use (for now) for an environment with bigger pointers
57 /* By default we have 64-bit wide `long int', pointers and `off_t'. */
64 /* By default we have 32-bit wide `int', `long int', pointers and `off_t'
76 /* We can never provide environments with 64-bit wide pointers. */
/OK3568_Linux_fs/kernel/sound/firewire/dice/
H A Ddice-transaction.c273 __be32 *pointers; in get_subaddrs() local
279 pointers = kmalloc_array(ARRAY_SIZE(min_values), sizeof(__be32), in get_subaddrs()
281 if (pointers == NULL) in get_subaddrs()
290 DICE_PRIVATE_SPACE, pointers, in get_subaddrs()
296 data = be32_to_cpu(pointers[i]); in get_subaddrs()
303 if (be32_to_cpu(pointers[1]) > 0x18) { in get_subaddrs()
310 be32_to_cpu(pointers[0]) * 4 + GLOBAL_VERSION, in get_subaddrs()
328 dice->global_offset = be32_to_cpu(pointers[0]) * 4; in get_subaddrs()
329 dice->tx_offset = be32_to_cpu(pointers[2]) * 4; in get_subaddrs()
330 dice->rx_offset = be32_to_cpu(pointers[4]) * 4; in get_subaddrs()
[all …]
H A Ddice-extension.c142 __be32 *pointers; in snd_dice_detect_extension_formats() local
147 pointers = kmalloc_array(9, sizeof(__be32) * 2, GFP_KERNEL); in snd_dice_detect_extension_formats()
148 if (pointers == NULL) in snd_dice_detect_extension_formats()
152 DICE_EXT_APP_SPACE, pointers, in snd_dice_detect_extension_formats()
162 if (pointers[i * 2] == pointers[j * 2]) { in snd_dice_detect_extension_formats()
170 section_addr = DICE_EXT_APP_SPACE + be32_to_cpu(pointers[12]) * 4; in snd_dice_detect_extension_formats()
173 kfree(pointers); in snd_dice_detect_extension_formats()
/OK3568_Linux_fs/kernel/Documentation/arm64/
H A Dtagged-address-abi.rst17 userspace (EL0) to perform memory accesses through 64-bit pointers with
19 syscall ABI that allows userspace to pass certain tagged pointers to
48 tagged pointers in this context is allowed with these exceptions:
55 incorrectly accept valid tagged pointers for the ``brk()``,
65 incorrectly accept valid tagged pointers for this system call.
101 - The syscall behaviour is undefined for invalid tagged pointers: it may
109 A definition of the meaning of tagged pointers on AArch64 can be found
110 in Documentation/arm64/tagged-pointers.rst.
118 - ``prctl()`` other than pointers to user data either passed directly or
121 - ``ioctl()`` other than pointers to user data either passed directly or
[all …]
H A Dpointer-authentication.rst21 whether pointers have been modified unexpectedly. A PAC is derived from
78 exposed for data pointers and instruction pointers, as the set of PAC
81 pointers).
129 instructions to sign and authenticate function pointers and other pointers
132 pointers.
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/isp/kernels/sdis/sdis_2/
H A Dia_css_sdis2_types.h30 /* DVS 2.0 Coefficient types. This structure contains 4 pointers to
48 hor_coefs; /** struct with pointers that contain the horizontal coefficients */
50 ver_coefs; /** struct with pointers that contain the vertical coefficients */
53 /* DVS 2.0 Statistic types. This structure contains 4 pointers to
71 hor_prod; /** struct with pointers that contain the horizontal statistics */
73 ver_prod; /** struct with pointers that contain the vertical statistics */
/OK3568_Linux_fs/kernel/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_tlv.c32 * pointers.
40 /* verify pointers are not NULL */ in fm10k_tlv_attr_put_null_string()
82 * with a valid pointers.
88 /* verify pointers are not NULL */ in fm10k_tlv_attr_get_null_string()
110 * valid pointers.
118 /* verify pointers are not NULL */ in fm10k_tlv_attr_put_mac_vlan()
147 * if provided with a valid pointers.
151 /* verify pointers are not NULL */ in fm10k_tlv_attr_get_mac_vlan()
170 * valid pointers.
174 /* verify pointers are not NULL */ in fm10k_tlv_attr_put_bool()
[all …]
/OK3568_Linux_fs/kernel/Documentation/core-api/
H A Dprintk-formats.rst61 pointers of different types.
71 Plain Pointers
78 Pointers printed without a specifier extension (i.e unadorned %p) are
84 Error Pointers
91 For printing error pointers (i.e. a pointer for which IS_ERR() is true)
96 Symbols/Function Pointers
117 Probed Pointers from BPF / tracing
131 Kernel Pointers
138 For printing kernel pointers which should be hidden from unprivileged
149 For printing pointers when you *really* want to print the address. Please
[all …]
H A Dassoc_array.rst11 1. Objects are opaque pointers. The implementation does not care where they
16 Pointers to objects _must_ be zero in the least significant bit.
52 pack leaf object pointers into spare space in the node rather than making an
187 pointers internally.
340 can contain mixtures of leaves and metadata pointers.
434 pointers - even if some of those leaves would like to be in the same slot.
436 A node can contain a heterogeneous mix of leaves and metadata pointers.
437 Metadata pointers must be in the slots that match their subdivisions of key
477 Each node has a maximum capacity of 16 leaves and metadata pointers. If the
523 new layout until we follow the back pointers - at which point we've
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/
H A Dhost-cpu-c-abi.m466 # - 64-bit instruction set, 64-bit pointers, 64-bit 'long': x86_64.
67 # - 64-bit instruction set, 64-bit pointers, 32-bit 'long': x86_64
69 # - 64-bit instruction set, 32-bit pointers, 32-bit 'long': x86_64-x32.
70 # - 32-bit instruction set, 32-bit pointers, 32-bit 'long': i386.
103 # - aarch64 instruction set, 64-bit pointers, 64-bit 'long': arm64.
104 # - aarch64 instruction set, 32-bit pointers, 32-bit 'long': arm64-ilp32.
105 # - 32-bit instruction set, 32-bit pointers, 32-bit 'long': arm or armhf.
516 # - 64-bit instruction set, 64-bit pointers, 64-bit 'long': x86_64.
517 # - 64-bit instruction set, 64-bit pointers, 32-bit 'long': x86_64
519 # - 64-bit instruction set, 32-bit pointers, 32-bit 'long': x86_64-x32.
[all …]
/OK3568_Linux_fs/kernel/Documentation/filesystems/
H A Dsysv-fs.rst114 of limited size, and every now and then a free block contains pointers
116 contains pointers and so on. The list terminates with a "block number"
214 - 1 indirect block (pointers to blocks)
215 - 1 double-indirect block (pointer to pointers to blocks)
220 - 1 indirect block (pointers to blocks)
221 - 1 double-indirect block (pointer to pointers to blocks)
222 - 1 triple-indirect block (pointer to pointers to pointers to blocks)
H A Dqnx6.rst61 addressing block holds up to blocksize / 4 bytes pointers to data blocks.
65 Unused block pointers are always set to ~0 - regardless of root node,
86 The inode structure contains pointers to the filesystem blocks which contain
94 There are also pointers to the first 16 blocks, if the object data can be
122 starting with the superblock longfilename root node pointers.
133 no block pointers and the directory file record pointing to the target file
/OK3568_Linux_fs/kernel/fs/reiserfs/
H A Dibalance.c122 * Insert count node pointers into buffer cur before position to + 1.
124 * Items and node pointers are specified by inserted and bh respectively.
202 * Delete del_num items and node pointers from buffer cur starting from
203 * the first_i'th item and first_p'th pointers respectively.
221 "no so many pointers (%d), only (%d) or " in internal_delete_pointers_items()
276 /* delete n node pointers and items starting from given position */
284 * delete n pointers starting from `from' position in CUR; in internal_delete_childs()
291 * copy cpy_num node pointers and cpy_num - 1 items from buffer src to buffer
303 * ATTENTION! Number of node pointers in DEST is equal to number in internal_copy_pointers_items()
342 /* prepare space for cpy_num pointers */ in internal_copy_pointers_items()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/as.html/
H A DXStormy16-Directives.html79 <dd><p>Like the <samp>--16bit-pointers</samp> command-line option this directive
80 indicates that the assembly code makes use of 16-bit pointers.
85 <dd><p>Like the <samp>--32bit-pointers</samp> command-line option this directive
86 indicates that the assembly code makes use of 32-bit pointers.
91 <dd><p>Like the <samp>--no-pointers</samp> command-line option this directive
92 indicates that the assembly code does not makes use pointers.
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/as.html/
H A DXStormy16-Directives.html79 <dd><p>Like the <samp>--16bit-pointers</samp> command-line option this directive
80 indicates that the assembly code makes use of 16-bit pointers.
85 <dd><p>Like the <samp>--32bit-pointers</samp> command-line option this directive
86 indicates that the assembly code makes use of 32-bit pointers.
91 <dd><p>Like the <samp>--no-pointers</samp> command-line option this directive
92 indicates that the assembly code does not makes use pointers.
/OK3568_Linux_fs/kernel/Documentation/RCU/
H A Drcu_dereference.rst40 -not- work in general for char* pointers.
42 - XOR bits to translate pointers, as is done in some
50 "(x-(uintptr_t)x)" for char* pointers. The compiler is within its
87 - Be very careful about comparing pointers obtained from
89 explained, if the two pointers are equal, the compiler could
115 it is safe to compare pointers from rcu_dereference()
116 against NULL pointers.
155 rcu_dereference(). In this case, both pointers depend
171 - The pointers are not equal -and- the compiler does
418 SPARSE CHECKING OF RCU-PROTECTED POINTERS
[all …]
/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinengine.c38 * Global variables for function pointers into
143 /* Set engine function pointers */ in winSetEngine()
159 /* Set engine function pointers */ in winSetEngine()
170 /* Setup engine function pointers */ in winSetEngine()
189 /* Set engine function pointers */ in winSetEngine()
199 /* Set engine function pointers */ in winSetEngine()
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/verifier/
H A Dunpriv.c220 "unpriv: spill/fill of different pointers stx",
238 .errstr = "same insn cannot be used with different pointers",
242 "unpriv: spill/fill of different pointers stx - ctx and sock",
276 "unpriv: spill/fill of different pointers stx - leak sock",
302 //.errstr = "same insn cannot be used with different pointers",
307 "unpriv: spill/fill of different pointers stx - sock and ctx (read)",
335 .errstr = "same insn cannot be used with different pointers",
339 "unpriv: spill/fill of different pointers stx - sock and ctx (write)",
368 //.errstr = "same insn cannot be used with different pointers",
373 "unpriv: spill/fill of different pointers ldx",
[all …]
H A Dmap_ptr_mixing.c2 "calls: two calls returning different map pointers for lookup (hash, array)",
32 "calls: two calls returning different map pointers for lookup (hash, map in map)",
62 "cond: two branches returning different map pointers for lookup (tail, tail)",
83 "cond: two branches returning same map pointers for lookup (tail, tail)",
/OK3568_Linux_fs/kernel/tools/objtool/Documentation/
H A Dstack-validation.txt35 Frame pointers are used for debugging purposes. They allow runtime
40 For some architectures, frame pointers are enabled by
42 required by the ABI (sometimes referred to as "backchain pointers").
45 frame pointers when the -fno-omit-frame-pointer option is used.
51 For stack traces based on frame pointers to be reliable, all
58 pointers enabled:
95 destroyed. This is an inherent limitation of frame pointers.
99 An alternative to frame pointers and DWARF, ORC unwind data can be
100 used to walk the stack. Unlike frame pointers, ORC data is out of
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Dstl_function.h76 * refer to @a functors, then, generally we include function pointers in in _GLIBCXX_VISIBILITY()
409 // Partial specialization of std::greater for pointers. in _GLIBCXX_VISIBILITY()
428 // Partial specialization of std::less for pointers. in _GLIBCXX_VISIBILITY()
447 // Partial specialization of std::greater_equal for pointers. in _GLIBCXX_VISIBILITY()
466 // Partial specialization of std::less_equal for pointers. in _GLIBCXX_VISIBILITY()
1056 // 20.3.7 adaptors pointers functions in _GLIBCXX_VISIBILITY()
1057 /** @defgroup pointer_adaptors Adaptors for pointers to functions in _GLIBCXX_VISIBILITY()
1060 * The advantage of function objects over pointers to functions is that in _GLIBCXX_VISIBILITY()
1066 * Adaptors are provided to turn pointers to unary (single-argument) and in _GLIBCXX_VISIBILITY()
1078 /// One of the @link pointer_adaptors adaptors for function pointers@endlink. in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Dstl_function.h76 * refer to @a functors, then, generally we include function pointers in in _GLIBCXX_VISIBILITY()
409 // Partial specialization of std::greater for pointers. in _GLIBCXX_VISIBILITY()
428 // Partial specialization of std::less for pointers. in _GLIBCXX_VISIBILITY()
447 // Partial specialization of std::greater_equal for pointers. in _GLIBCXX_VISIBILITY()
466 // Partial specialization of std::less_equal for pointers. in _GLIBCXX_VISIBILITY()
1056 // 20.3.7 adaptors pointers functions in _GLIBCXX_VISIBILITY()
1057 /** @defgroup pointer_adaptors Adaptors for pointers to functions in _GLIBCXX_VISIBILITY()
1060 * The advantage of function objects over pointers to functions is that in _GLIBCXX_VISIBILITY()
1066 * Adaptors are provided to turn pointers to unary (single-argument) and in _GLIBCXX_VISIBILITY()
1078 /// One of the @link pointer_adaptors adaptors for function pointers@endlink. in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/kernel/fs/btrfs/
H A Draid56.c149 * these are two arrays of pointers. We allocate the
154 /* pointers to pages that we allocated for
160 * pointers to the pages in the bio_list. Stored
170 /* allocated with real_stripes-many pointers for finish_*() calls */
1201 void **pointers = rbio->finish_pointers; in finish_rmw() local
1238 * bio list one last time and map the page pointers in finish_rmw()
1256 pointers[stripe] = kmap(p); in finish_rmw()
1262 pointers[stripe++] = kmap(p); in finish_rmw()
1272 pointers[stripe++] = kmap(p); in finish_rmw()
1275 pointers); in finish_rmw()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/
H A Dia_css_3a.h82 /* Map with host-side pointers to ISP-format statistics.
83 * These pointers can either be copies of ISP data or memory mapped
84 * ISP pointers.
85 * All of the data behind these pointers is allocated contiguously, the
165 * pointers to all relevant subsets of the 3a statistics (dmem,

12345678910>>...107