Home
last modified time | relevance | path

Searched +full:- +full:- +full:info (Results 1 – 25 of 1248) sorted by relevance

12345678910>>...50

/external/mesa3d/src/amd/common/
Dac_gpu_info.c15 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
29 #include "drm-uapi/amdgpu_drm.h"
56 static unsigned cik_get_num_tile_pipes(struct amdgpu_gpu_info *info) in cik_get_num_tile_pipes() argument
58 unsigned mode2d = info->gb_tile_mode[CIK_TILE_MODE_COLOR_2D]; in cik_get_num_tile_pipes()
145 struct radeon_info *info, in has_tmz_support() argument
152 if (amdinfo->ids_flags & AMDGPU_IDS_FLAGS_TMZ) in has_tmz_support()
156 if (info->drm_minor >= 40) in has_tmz_support()
160 if (info->chip_class < GFX9) in has_tmz_support()
163 if (info->drm_minor < 36) in has_tmz_support()
178 bool ac_query_gpu_info(int fd, void *dev_p, struct radeon_info *info, in ac_query_gpu_info() argument
[all …]
/external/deqp/android/cts/master/src/
Dvk-incremental-deqp.txt2 dEQP-VK.info.build
3 dEQP-VK.info.device
4 dEQP-VK.info.platform
5 dEQP-VK.info.memory_limits
6 dEQP-VK.info.physical_devices
7 dEQP-VK.info.physical_device_groups
8 dEQP-VK.info.instance_layers
9 dEQP-VK.info.instance_extensions
10 dEQP-VK.info.device_features
11 dEQP-VK.info.device_properties
[all …]
/external/deqp/android/cts/master/
Dvk-incremental-deqp.txt1 dEQP-VK.info.build
2 dEQP-VK.info.device
3 dEQP-VK.info.platform
4 dEQP-VK.info.memory_limits
5 dEQP-VK.info.physical_devices
6 dEQP-VK.info.physical_device_groups
7 dEQP-VK.info.instance_layers
8 dEQP-VK.info.instance_extensions
9 dEQP-VK.info.device_features
10 dEQP-VK.info.device_properties
[all …]
/external/adhd/cras/src/server/
Dcras_hfp_info.c2 * Use of this source code is governed by a BSD-style license that can be
64 * bi-direction audio, two iodevs should share one hfp_info if they
67 * fd - The file descriptor for SCO socket.
68 * started - If the hfp_info has started to read/write SCO data.
69 * mtu - The max transmit unit reported from BT adapter.
70 * packet_size - The size of SCO packet to read/write preferred by
72 * capture_buf - The buffer to hold samples read from SCO socket.
73 * playback_buf - The buffer to hold samples about to write to SCO socket.
74 * msbc_read - mSBC codec to decode input audio in wideband speech mode.
75 * msbc_write - mSBC codec to encode output audio in wideband speech mode.
[all …]
/external/capstone/arch/M68K/
DM68KDisassembler.c9 * Copyright 1998-2001 Karl Stenerud. All rights reserved.
31 * Daniel Collin <daniel@collin.com> 2015-2016 */
154 #define BITFIELD_MASK(sb,eb) (((1 << ((sb) + 1))-1) & (~((1 << (eb))-1)))
159 static unsigned int m68k_read_disassembler_16(const m68k_info *info, const uint64_t addr) in m68k_read_disassembler_16() argument
161 const uint16_t v0 = info->code[addr + 0]; in m68k_read_disassembler_16()
162 const uint16_t v1 = info->code[addr + 1]; in m68k_read_disassembler_16()
166 static unsigned int m68k_read_disassembler_32(const m68k_info *info, const uint64_t addr) in m68k_read_disassembler_32() argument
168 const uint32_t v0 = info->code[addr + 0]; in m68k_read_disassembler_32()
169 const uint32_t v1 = info->code[addr + 1]; in m68k_read_disassembler_32()
170 const uint32_t v2 = info->code[addr + 2]; in m68k_read_disassembler_32()
[all …]
/external/mesa3d/src/amd/vulkan/
Dradv_shader_info.c29 struct radv_shader_info *info) in mark_sampler_desc() argument
31 info->desc_set_used_mask |= (1u << var->data.descriptor_set); in mark_sampler_desc()
37 struct radv_shader_info *info) in gather_intrinsic_load_input_info() argument
39 switch (nir->info.stage) { in gather_intrinsic_load_input_info()
43 unsigned mask = nir_ssa_def_components_read(&instr->dest.ssa); in gather_intrinsic_load_input_info()
45 info->vs.input_usage_mask[idx] |= mask << component; in gather_intrinsic_load_input_info()
63 set_writes_memory(const nir_shader *nir, struct radv_shader_info *info) in set_writes_memory() argument
65 if (nir->info.stage == MESA_SHADER_FRAGMENT) in set_writes_memory()
66 info->ps.writes_memory = true; in set_writes_memory()
72 struct radv_shader_info *info) in gather_intrinsic_store_output_info() argument
[all …]
/external/mesa3d/src/gallium/auxiliary/nir/
Dnir_to_tgsi_info.c18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
39 for (unsigned i = 0; i < instr->num_srcs; i++) { in tex_get_texture_var()
40 switch (instr->src[i].src_type) { in tex_get_texture_var()
42 return nir_deref_instr_get_variable(nir_src_as_deref(instr->src[i].src)); in tex_get_texture_var()
53 return nir_deref_instr_get_variable(nir_src_as_deref(instr->src[0])); in intrinsic_get_var()
64 switch (deref->deref_type) { in gather_usage_helper()
66 bool is_compact = nir_deref_instr_get_variable(deref)->data.compact; in gather_usage_helper()
67 unsigned elem_size = is_compact ? DIV_ROUND_UP(glsl_get_length(deref->type), 4) : in gather_usage_helper()
68 glsl_count_attribute_slots(deref->type, false); in gather_usage_helper()
69 if (nir_src_is_const(deref->arr.index)) { in gather_usage_helper()
[all …]
/external/selinux/libsemanage/src/
Dparse_utils.c14 const char *filename, void *parse_arg, parse_info_t ** info) in parse_init() argument
25 tmp_info->filename = filename; in parse_init()
26 tmp_info->file_stream = NULL; in parse_init()
27 tmp_info->working_copy = NULL; in parse_init()
28 tmp_info->orig_line = NULL; in parse_init()
29 tmp_info->ptr = NULL; in parse_init()
30 tmp_info->lineno = 0; in parse_init()
31 tmp_info->parse_arg = parse_arg; in parse_init()
33 *info = tmp_info; in parse_init()
37 void parse_release(parse_info_t * info) in parse_release() argument
[all …]
/external/toolchain-utils/crosperf/test_cache/test_input/
Dresults.txt1INFO | Running autotest_quickmerge step.\n11:22:08 INFO | quickmerge| 11:22:08: INFO: RunCommand: …
3 .S'INFO:root:Identity added: /tmp/test_that_results_PPRMIh/testing_rsa (/tmp/test_that_results_PPRM…
/external/libnl/lib/route/link/
Dmacsec.c2 * lib/route/link/macsec.c MACsec Link Info
24 #include <netlink-private/netlink.h>
31 #include <netlink-private/route/link/api.h>
32 #include <netlink-private/utils.h>
97 struct macsec_info *info; in macsec_alloc() local
99 if (!link->l_info) { in macsec_alloc()
100 link->l_info = malloc(sizeof(struct macsec_info)); in macsec_alloc()
101 if (!link->l_info) in macsec_alloc()
102 return -NLE_NOMEM; in macsec_alloc()
105 memset(link->l_info, 0, sizeof(struct macsec_info)); in macsec_alloc()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dprefilter.cc2 // Use of this source code is governed by a BSD-style
18 #include "re2/walker-inl.h"
38 for (size_t i = 0; i < subs_->size(); i++) in ~Prefilter()
52 if (subs_->empty()) { in Simplify()
62 if (subs_->size() == 1) { in Simplify()
64 subs_->clear(); in Simplify()
66 return a->Simplify(); in Simplify()
77 a = a->Simplify(); in AndOr()
78 b = b->Simplify(); in AndOr()
80 // Canonicalize: a->op <= b->op. in AndOr()
[all …]
/external/iptables/extensions/
Dlibxt_CONNMARK.c1 /* Shared library add-on to iptables to add CONNMARK target support.
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
69 "left-shift-mark",
70 "right-shift-mark"
77 " --set-mark value[/mask] Set conntrack mark value\n" in CONNMARK_help()
78 " --save-mark [--mask mask] Save the packet nfmark in the connection\n" in CONNMARK_help()
79 " --restore-mark [--mask mask] Restore saved nfmark value\n"); in CONNMARK_help()
84 {.name = "set-mark", .id = O_SET_MARK, .type = XTTYPE_MARKMASK32,
86 {.name = "save-mark", .id = O_SAVE_MARK, .type = XTTYPE_NONE,
88 {.name = "restore-mark", .id = O_RESTORE_MARK, .type = XTTYPE_NONE,
[all …]
Dlibxt_HMARK.c9 * Description: shared library add-on to iptables to add HMARK target support
26 " --hmark-tuple [src|dst|sport|dport|spi|proto|ct][,...]\n" in HMARK_help()
27 " --hmark-mod value nfmark modulus value\n" in HMARK_help()
28 " --hmark-offset value Last action add value to nfmark\n\n" in HMARK_help()
29 " --hmark-rnd Random see for hashing\n" in HMARK_help()
31 " --hmark-src-prefix length Source address mask CIDR prefix\n" in HMARK_help()
32 " --hmark-dst-prefix length Dest address mask CIDR prefix\n" in HMARK_help()
33 " --hmark-sport-mask value Mask src port with value\n" in HMARK_help()
34 " --hmark-dport-mask value Mask dst port with value\n" in HMARK_help()
35 " --hmark-spi-mask value For esp and ah AND spi with value\n" in HMARK_help()
[all …]
Dlibxt_owner.c2 * libxt_owner - iptables addon for xt_owner
4 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
48 * Note: "UINT32_MAX - 1" is used in the code because -1 is a reserved
66 "[!] --uid-owner userid Match local UID\n" in owner_mt_help_v0()
67 "[!] --gid-owner groupid Match local GID\n" in owner_mt_help_v0()
68 "[!] --pid-owner processid Match local PID\n" in owner_mt_help_v0()
69 "[!] --sid-owner sessionid Match local SID\n" in owner_mt_help_v0()
70 "[!] --cmd-owner name Match local command name\n" in owner_mt_help_v0()
78 "[!] --uid-owner userid Match local UID\n" in owner_mt6_help_v0()
79 "[!] --gid-owner groupid Match local GID\n" in owner_mt6_help_v0()
[all …]
/external/mesa3d/src/gallium/drivers/zink/
Dzink_blit.c11 blit_resolve(struct zink_context *ctx, const struct pipe_blit_info *info) in blit_resolve() argument
13 if (util_format_get_mask(info->dst.format) != info->mask || in blit_resolve()
14 util_format_get_mask(info->src.format) != info->mask || in blit_resolve()
15 util_format_is_depth_or_stencil(info->dst.format) || in blit_resolve()
16 info->scissor_enable || in blit_resolve()
17 info->alpha_blend) in blit_resolve()
20 if (info->src.box.width != info->dst.box.width || in blit_resolve()
21 info->src.box.height != info->dst.box.height || in blit_resolve()
22 info->src.box.depth != info->dst.box.depth) in blit_resolve()
25 if (info->render_condition_enable && in blit_resolve()
[all …]
/external/mesa3d/src/freedreno/common/
Dfreedreno_dev_info.c31 return BITFIELD_MASK(high - low) << shift; in max_bitfield_val()
35 freedreno_dev_info_init(struct freedreno_dev_info *info, uint32_t gpu_id) in freedreno_dev_info_init() argument
38 info->gmem_align_w = 16; in freedreno_dev_info_init()
39 info->gmem_align_h = 4; in freedreno_dev_info_init()
40 info->tile_align_w = gpu_id == 650 ? 96 : 32; in freedreno_dev_info_init()
41 info->tile_align_h = 32; in freedreno_dev_info_init()
43 info->tile_max_w = 1024; /* max_bitfield_val(5, 0, 5) */ in freedreno_dev_info_init()
44 info->tile_max_h = max_bitfield_val(14, 8, 4); in freedreno_dev_info_init()
45 info->num_vsc_pipes = 32; in freedreno_dev_info_init()
50 info->a6xx.ccu_offset_gmem = 0x7c000; in freedreno_dev_info_init()
[all …]
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader_nir.c18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
36 for (unsigned i = 0; i < instr->num_srcs; i++) { in tex_get_texture_deref()
37 switch (instr->src[i].src_type) { in tex_get_texture_deref()
39 return nir_src_as_deref(instr->src[i].src); in tex_get_texture_deref()
48 static void scan_io_usage(struct si_shader_info *info, nir_intrinsic_instr *intr, in scan_io_usage() argument
53 if (intr->intrinsic == nir_intrinsic_load_interpolated_input) { in scan_io_usage()
54 nir_intrinsic_instr *baryc = nir_instr_as_intrinsic(intr->src[0].ssa->parent_instr); in scan_io_usage()
57 if (nir_intrinsic_infos[baryc->intrinsic].index_map[NIR_INTRINSIC_INTERP_MODE] > 0) in scan_io_usage()
69 if (nir_intrinsic_infos[intr->intrinsic].index_map[NIR_INTRINSIC_WRMASK] > 0) { in scan_io_usage()
71 bit_size = nir_src_bit_size(intr->src[0]); in scan_io_usage()
[all …]
/external/angle/src/libANGLE/renderer/d3d/d3d11/
Dformatutils11.cpp3 // Use of this source code is governed by a BSD-style license that can be
215 // http://msdn.microsoft.com/en-us/library/windows/desktop/ff471324(v=vs.85).aspx in GetVertexFormatInfo_FL_9_3()
219 // GL_BYTE -- unnormalized in GetVertexFormatInfo_FL_9_3()
222 static constexpr VertexFormat info(VERTEX_CONVERT_BOTH, DXGI_FORMAT_R16G16_SINT, in GetVertexFormatInfo_FL_9_3() local
224 return &info; in GetVertexFormatInfo_FL_9_3()
228 static constexpr VertexFormat info(VERTEX_CONVERT_BOTH, DXGI_FORMAT_R16G16_SINT, in GetVertexFormatInfo_FL_9_3() local
230 return &info; in GetVertexFormatInfo_FL_9_3()
234 static constexpr VertexFormat info(VERTEX_CONVERT_BOTH, DXGI_FORMAT_R16G16B16A16_SINT, in GetVertexFormatInfo_FL_9_3() local
236 return &info; in GetVertexFormatInfo_FL_9_3()
240 static constexpr VertexFormat info(VERTEX_CONVERT_BOTH, DXGI_FORMAT_R16G16B16A16_SINT, in GetVertexFormatInfo_FL_9_3() local
[all …]
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_scan.c21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
75 tgsi_get_opcode_info(opcode)->is_tex); in is_texture_inst()
86 if (tgsi_get_opcode_info(opcode)->is_tex) { in computes_derivative()
107 scan_src_operand(struct tgsi_shader_info *info, in scan_src_operand() argument
115 int ind = src->Register.Index; in scan_src_operand()
117 if (info->processor == PIPE_SHADER_COMPUTE && in scan_src_operand()
118 src->Register.File == TGSI_FILE_SYSTEM_VALUE) { in scan_src_operand()
121 name = info->system_value_semantic_name[src->Register.Index]; in scan_src_operand()
131 info->uses_thread_id[i] = true; in scan_src_operand()
133 info->uses_block_id[i] = true; in scan_src_operand()
[all …]
/external/libxkbcommon/src/xkbcomp/
Dcompat.c52 #include "xkbcomp-priv.h"
101 siText(SymInterpInfo *si, CompatInfo *info) in siText() argument
103 char *buf = xkb_context_get_buffer(info->ctx, 128); in siText()
105 if (si == &info->default_interp) in siText()
109 KeysymText(info->ctx, si->interp.sym), in siText()
110 SIMatchText(si->interp.match), in siText()
111 ModMaskText(info->ctx, &info->mods, si->interp.mods)); in siText()
117 ReportSINotArray(CompatInfo *info, SymInterpInfo *si, const char *field) in ReportSINotArray() argument
119 return ReportNotArray(info->ctx, "symbol interpretation", field, in ReportSINotArray()
120 siText(si, info)); in ReportSINotArray()
[all …]
Dtypes.c29 #include "xkbcomp-priv.h"
66 MapEntryTxt(KeyTypesInfo *info, struct xkb_key_type_entry *entry) in MapEntryTxt() argument
68 return ModMaskText(info->ctx, &info->mods, entry->mods.mods); in MapEntryTxt()
72 TypeTxt(KeyTypesInfo *info, KeyTypeInfo *type) in TypeTxt() argument
74 return xkb_atom_text(info->ctx, type->name); in TypeTxt()
78 TypeMaskTxt(KeyTypesInfo *info, KeyTypeInfo *type) in TypeMaskTxt() argument
80 return ModMaskText(info->ctx, &info->mods, type->mods); in TypeMaskTxt()
84 ReportTypeShouldBeArray(KeyTypesInfo *info, KeyTypeInfo *type, in ReportTypeShouldBeArray() argument
87 return ReportShouldBeArray(info->ctx, "key type", field, in ReportTypeShouldBeArray()
88 TypeTxt(info, type)); in ReportTypeShouldBeArray()
[all …]
Dkeycodes.c29 #include "xkbcomp-priv.h"
64 InitAliasInfo(AliasInfo *info, enum merge_mode merge, in InitAliasInfo() argument
67 memset(info, 0, sizeof(*info)); in InitAliasInfo()
68 info->merge = merge; in InitAliasInfo()
69 info->alias = alias; in InitAliasInfo()
70 info->real = real; in InitAliasInfo()
74 FindLedByName(KeyNamesInfo *info, xkb_atom_t name, in FindLedByName() argument
77 for (xkb_led_index_t idx = 0; idx < info->num_led_names; idx++) { in FindLedByName()
78 LedNameInfo *ledi = &info->led_names[idx]; in FindLedByName()
79 if (ledi->name == name) { in FindLedByName()
[all …]
/external/libxml2/python/
Dlibxml2-python-api.xml1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <api name='libxml2-python'>
6 <info>Register a Python written function to the XPath interpreter</info>
7 <return type='int' info="1 in case of success, 0 or -1 in case of error"/>
8 <arg name='ctx' type='xmlXPathContextPtr' info='the xpathContext'/>
9 <arg name='name' type='xmlChar *' info='the function name'/>
10 <arg name='ns_uri' type='xmlChar *' info='the namespace or NULL'/>
11 <arg name='f' type='pythonObject' info='the python function'/>
15 <info>Register a variable with the XPath context</info>
16 <return type='int' info="1 in case of success, 0 or -1 in case of error"/>
[all …]
/external/mesa3d/src/gallium/winsys/radeon/drm/
Dradeon_drm_winsys.c17 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
61 struct drm_radeon_info info; in radeon_set_fd_access() local
64 memset(&info, 0, sizeof(info)); in radeon_set_fd_access()
82 info.value = (unsigned long)&value; in radeon_set_fd_access()
83 info.request = request; in radeon_set_fd_access()
84 if (drmCommandWriteRead(applier->ws->fd, DRM_RADEON_INFO, in radeon_set_fd_access()
85 &info, sizeof(info)) != 0) { in radeon_set_fd_access()
108 struct drm_radeon_info info; in radeon_get_drm_value() local
111 memset(&info, 0, sizeof(info)); in radeon_get_drm_value()
113 info.value = (unsigned long)out; in radeon_get_drm_value()
[all …]
/external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/
Dptrace-pkey.c1 // SPDX-License-Identifier: GPL-2.0+
29 #define pkeyshift(pkey) (PKEY_REG_BITS - ((pkey + 1) * AMR_BITS_PER_PKEY))
74 static int child(struct shared_info *info) in child() argument
82 ret = wait_parent(&info->child_sync); in child()
90 CHILD_FAIL_IF(pkey1 < 0, &info->child_sync); in child()
96 CHILD_FAIL_IF(pkey2 < 0, &info->child_sync); in child()
99 CHILD_FAIL_IF(pkey3 < 0, &info->child_sync); in child()
101 info->amr1 |= 3ul << pkeyshift(pkey1); in child()
102 info->amr2 |= 3ul << pkeyshift(pkey2); in child()
103 info->amr3 |= info->amr2 | 3ul << pkeyshift(pkey3); in child()
[all …]

12345678910>>...50