Home
last modified time | relevance | path

Searched full:info (Results 1 – 25 of 10147) sorted by relevance

12345678910>>...406

/external/valgrind/helgrind/tests/
Dtc19_shadowmem.c17 Info; typedef
25 Info* info = (Info*)infoV; in child8() local
26 firstoff = info->firstoff; in child8()
27 lastoff = info->lastoff; in child8()
28 skipoff = info->skipoff; in child8()
29 arr = info->arr; in child8()
31 assert( info->child == &child8 ); in child8()
49 Info* info = (Info*)infoV; in child16() local
50 firstoff = info->firstoff; in child16()
51 lastoff = info->lastoff; in child16()
[all …]
/external/libxml2/python/
Dlibxml2-python-api.xml6 <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"/>
17 <arg name='ctx' type='xmlXPathContextPtr' info='the xpathContext'/>
18 <arg name='name' type='xmlChar *' info='the variable name'/>
[all …]
/external/libxml2/doc/
Dlibxml2-api.xml3827 <info>Macro used to signal to GCC unused function parameters</info>
3830 <info>Macro to cast a string to an xmlChar * when one know its safe.</info>
3833 <info>default buffer size 4000.</info>
3836 <info>Macro to try to cast the value on the top of the XPath stack to a boolean.</info>
3839 <info>Macro to try to cast the value on the top of the XPath stack to a number.</info>
3842 <info>Macro to try to cast the value on the top of the XPath stack to a string.</info>
3845 <info>Macro to check that the number of args passed to an XPath function matches.</info>
3846 <arg name='x' info='the number of expected args'/>
3849 <info>Macro to return from the function if an XPath error was detected.</info>
3852 <info>Macro to return 0 from the function if an XPath error was detected.</info>
[all …]
/external/selinux/libsemanage/src/
Dparse_utils.c14 const char *filename, void *parse_arg, parse_info_t ** info) in parse_init() argument
33 *info = tmp_info; in parse_init()
37 void parse_release(parse_info_t * info) in parse_release() argument
40 parse_close(info); in parse_release()
41 parse_dispose_line(info); in parse_release()
42 free(info); in parse_release()
45 int parse_open(semanage_handle_t * handle, parse_info_t * info) in parse_open() argument
48 info->file_stream = fopen(info->filename, "r"); in parse_open()
49 if (!info->file_stream && (errno != ENOENT)) { in parse_open()
51 info->filename, strerror(errno)); in parse_open()
[all …]
/external/regex-re2/re2/
Dprefilter.cc199 class Prefilter::Info { class in re2::Prefilter
201 Info();
202 ~Info();
204 // More constructors. They delete their Info* arguments.
205 static Info* Alt(Info* a, Info* b);
206 static Info* Concat(Info* a, Info* b);
207 static Info* And(Info* a, Info* b);
208 static Info* Star(Info* a);
209 static Info* Plus(Info* a);
210 static Info* Quest(Info* a);
[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/cblas/src/
Dcblas_xerbla.c8 void cblas_xerbla(int info, const char *rout, const char *form, ...) in cblas_xerbla() argument
20 if (info == 5 ) info = 4; in cblas_xerbla()
21 else if (info == 4 ) info = 5; in cblas_xerbla()
22 else if (info == 11) info = 9; in cblas_xerbla()
23 else if (info == 9 ) info = 11; in cblas_xerbla()
27 if (info == 5 ) info = 4; in cblas_xerbla()
28 else if (info == 4 ) info = 5; in cblas_xerbla()
32 if (info == 7 ) info = 6; in cblas_xerbla()
33 else if (info == 6 ) info = 7; in cblas_xerbla()
37 if (info == 4) info = 3; in cblas_xerbla()
[all …]
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_scan.c106 scan_src_operand(struct tgsi_shader_info *info, in scan_src_operand() argument
119 for (ind = 0; ind < info->num_inputs; ++ind) { in scan_src_operand()
120 info->input_usage_mask[ind] |= usage_mask; in scan_src_operand()
125 info->input_usage_mask[ind] |= usage_mask; in scan_src_operand()
128 if (info->processor == PIPE_SHADER_FRAGMENT) { in scan_src_operand()
132 input = info->input_array_first[src->Indirect.ArrayID]; in scan_src_operand()
136 name = info->input_semantic_name[input]; in scan_src_operand()
137 index = info->input_semantic_index[input]; in scan_src_operand()
144 info->reads_z = TRUE; in scan_src_operand()
153 info->colors_read |= mask << (index * 4); in scan_src_operand()
[all …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_draw.h43 util_draw_init_info(struct pipe_draw_info *info) in util_draw_init_info() argument
45 memset(info, 0, sizeof(*info)); in util_draw_init_info()
46 info->instance_count = 1; in util_draw_init_info()
47 info->max_index = 0xffffffff; in util_draw_init_info()
57 struct pipe_draw_info info; in util_draw_arrays() local
59 util_draw_init_info(&info); in util_draw_arrays()
60 info.mode = mode; in util_draw_arrays()
61 info.start = start; in util_draw_arrays()
62 info.count = count; in util_draw_arrays()
63 info.min_index = start; in util_draw_arrays()
[all …]
/external/iptables/extensions/
Dlibxt_HMARK.c143 hmark_parse(const char *type, size_t len, struct xt_hmark_info *info, in hmark_parse() argument
147 info->flags |= XT_HMARK_FLAG(XT_HMARK_CT); in hmark_parse()
150 memset(&info->src_mask, 0xff, sizeof(info->src_mask)); in hmark_parse()
151 info->flags |= XT_HMARK_FLAG(XT_HMARK_SADDR_MASK); in hmark_parse()
154 memset(&info->dst_mask, 0xff, sizeof(info->dst_mask)); in hmark_parse()
155 info->flags |= XT_HMARK_FLAG(XT_HMARK_DADDR_MASK); in hmark_parse()
158 memset(&info->port_mask.p16.src, 0xff, in hmark_parse()
159 sizeof(info->port_mask.p16.src)); in hmark_parse()
160 info->flags |= XT_HMARK_FLAG(XT_HMARK_SPORT_MASK); in hmark_parse()
163 memset(&info->port_mask.p16.dst, 0xff, in hmark_parse()
[all …]
Dlibxt_owner.c139 struct ipt_owner_info *info = cb->data; in owner_mt_parse_v0() local
152 info->invert |= IPT_OWNER_UID; in owner_mt_parse_v0()
153 info->match |= IPT_OWNER_UID; in owner_mt_parse_v0()
154 info->uid = id; in owner_mt_parse_v0()
162 info->invert |= IPT_OWNER_GID; in owner_mt_parse_v0()
163 info->match |= IPT_OWNER_GID; in owner_mt_parse_v0()
164 info->gid = id; in owner_mt_parse_v0()
168 info->invert |= IPT_OWNER_PID; in owner_mt_parse_v0()
169 info->match |= IPT_OWNER_PID; in owner_mt_parse_v0()
173 info->invert |= IPT_OWNER_SID; in owner_mt_parse_v0()
[all …]
Dlibxt_iprange.c98 struct ipt_iprange_info *info = cb->data; in iprange_parse() local
104 info->flags |= IPRANGE_SRC; in iprange_parse()
106 info->flags |= IPRANGE_SRC_INV; in iprange_parse()
109 info->src.min_ip = range[0].ip; in iprange_parse()
110 info->src.max_ip = range[1].ip; in iprange_parse()
113 info->flags |= IPRANGE_DST; in iprange_parse()
115 info->flags |= IPRANGE_DST_INV; in iprange_parse()
118 info->dst.min_ip = range[0].ip; in iprange_parse()
119 info->dst.max_ip = range[1].ip; in iprange_parse()
126 struct xt_iprange_mtinfo *info = cb->data; in iprange_mt_parse() local
[all …]
/external/autotest/client/site_tests/graphics_Gralloc/src/
Dgralloctest.c108 void grallocinfo_init(struct grallocinfo *info, int w, int h, int format, in grallocinfo_init() argument
111 info->w = w; in grallocinfo_init()
112 info->h = h; in grallocinfo_init()
113 info->format = format; in grallocinfo_init()
114 info->usage = usage; in grallocinfo_init()
115 info->fence_fd = -1; in grallocinfo_init()
116 info->vaddr = NULL; in grallocinfo_init()
117 info->ycbcr.y = NULL; in grallocinfo_init()
118 info->ycbcr.cb = NULL; in grallocinfo_init()
119 info->ycbcr.cr = NULL; in grallocinfo_init()
[all …]
/external/mesa3d/src/gallium/tests/graw/
Dgraw_util.h31 graw_util_create_window(struct graw_info *info, in graw_util_create_window() argument
45 memset(info, 0, sizeof(*info)); in graw_util_create_window()
54 for (i = 0; info->window == NULL && formats[i] != PIPE_FORMAT_NONE; i++) { in graw_util_create_window()
55 info->screen = graw_create_window_and_screen(0, 0, width, height, in graw_util_create_window()
57 &info->window); in graw_util_create_window()
60 if (!info->screen || !info->window) { in graw_util_create_window()
65 info->ctx = info->screen->context_create(info->screen, NULL, 0); in graw_util_create_window()
66 if (info->ctx == NULL) { in graw_util_create_window()
83 info->color_buf[i] = info->screen->resource_create(info->screen, in graw_util_create_window()
85 if (info->color_buf[i] == NULL) { in graw_util_create_window()
[all …]
/external/cblas/testing/
Dc_xerbla.c8 void cblas_xerbla(int info, const char *rout, const char *form, ...) in cblas_xerbla() argument
38 if (info == 5 ) info = 4; in cblas_xerbla()
39 else if (info == 4 ) info = 5; in cblas_xerbla()
40 else if (info == 11) info = 9; in cblas_xerbla()
41 else if (info == 9 ) info = 11; in cblas_xerbla()
45 if (info == 5 ) info = 4; in cblas_xerbla()
46 else if (info == 4 ) info = 5; in cblas_xerbla()
50 if (info == 7 ) info = 6; in cblas_xerbla()
51 else if (info == 6 ) info = 7; in cblas_xerbla()
55 if (info == 4) info = 3; in cblas_xerbla()
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_program.c37 nv50_vertprog_assign_slots(struct nv50_ir_prog_info *info) in nv50_vertprog_assign_slots() argument
39 struct nv50_program *prog = (struct nv50_program *)info->driverPriv; in nv50_vertprog_assign_slots()
43 for (i = 0; i < info->numInputs; ++i) { in nv50_vertprog_assign_slots()
45 prog->in[i].sn = info->in[i].sn; in nv50_vertprog_assign_slots()
46 prog->in[i].si = info->in[i].si; in nv50_vertprog_assign_slots()
48 prog->in[i].mask = info->in[i].mask; in nv50_vertprog_assign_slots()
50 prog->vp.attrs[(4 * i) / 32] |= info->in[i].mask << ((4 * i) % 32); in nv50_vertprog_assign_slots()
53 if (info->in[i].mask & (1 << c)) in nv50_vertprog_assign_slots()
54 info->in[i].slot[c] = n++; in nv50_vertprog_assign_slots()
56 if (info->in[i].sn == TGSI_SEMANTIC_PRIMID) in nv50_vertprog_assign_slots()
[all …]
/external/harfbuzz_ng/src/
Dhb-ot-layout-private.hh212 hb_glyph_info_t *info = buffer->info; in _next_syllable() local
215 unsigned int syllable = info[start].syllable(); in _next_syllable()
216 while (++start < count && syllable == info[start].syllable()) in _next_syllable()
252 _hb_glyph_info_set_unicode_props (hb_glyph_info_t *info, hb_buffer_t *buffer) in _hb_glyph_info_set_unicode_props() argument
255 unsigned int u = info->codepoint; in _hb_glyph_info_set_unicode_props()
296 props |= unicode->modified_combining_class (info->codepoint)<<8; in _hb_glyph_info_set_unicode_props()
310 info->unicode_props() = props; in _hb_glyph_info_set_unicode_props()
314 _hb_glyph_info_set_general_category (hb_glyph_info_t *info, in _hb_glyph_info_set_general_category() argument
318info->unicode_props() = (unsigned int) gen_cat | (info->unicode_props() & (0xFF & ~UPROPS_MASK_GEN… in _hb_glyph_info_set_general_category()
322 _hb_glyph_info_get_general_category (const hb_glyph_info_t *info) in _hb_glyph_info_get_general_category() argument
[all …]
/external/mesa3d/src/gallium/drivers/ilo/core/
Dilo_state_zs.c63 const struct ilo_state_zs_info *info) in zs_validate_gen6() argument
65 const struct ilo_image *img = (info->z_img) ? info->z_img : info->s_img; in zs_validate_gen6()
69 assert(!info->z_img == !info->z_vma); in zs_validate_gen6()
70 assert(!info->s_img == !info->s_vma); in zs_validate_gen6()
73 if (info->z_img) { in zs_validate_gen6()
74 assert(info->z_img->tiling == GEN6_TILING_Y); in zs_validate_gen6()
75 assert(info->z_vma->vm_alignment % 4096 == 0); in zs_validate_gen6()
77 if (info->s_img) { in zs_validate_gen6()
78 assert(info->s_img->tiling == GEN8_TILING_W); in zs_validate_gen6()
79 assert(info->s_vma->vm_alignment % 4096 == 0); in zs_validate_gen6()
[all …]
/external/v8/src/inspector/
Dv8-injected-script-host.cc37 const v8::FunctionCallbackInfo<v8::Value>& info) { in unwrapInspector() argument
38 DCHECK(!info.Data().IsEmpty()); in unwrapInspector()
39 DCHECK(info.Data()->IsExternal()); in unwrapInspector()
41 static_cast<V8InspectorImpl*>(info.Data().As<v8::External>()->Value()); in unwrapInspector()
84 const v8::FunctionCallbackInfo<v8::Value>& info) { in nullifyPrototypeCallback() argument
85 CHECK(info.Length() == 1 && info[0]->IsObject()); in nullifyPrototypeCallback()
86 v8::Isolate* isolate = info.GetIsolate(); in nullifyPrototypeCallback()
87 info[0] in nullifyPrototypeCallback()
94 const v8::FunctionCallbackInfo<v8::Value>& info) { in internalConstructorNameCallback() argument
95 if (info.Length() < 1 || !info[0]->IsObject()) return; in internalConstructorNameCallback()
[all …]
/external/webrtc/talk/session/media/
Dcurrentspeakermonitor_unittest.cc63 void SignalAudioMonitor(const AudioInfo& info) { in SignalAudioMonitor() argument
64 source_.SignalAudioMonitor(&source_, info); in SignalAudioMonitor()
79 static void InitAudioInfo(AudioInfo* info, int input_level, int output_level) { in InitAudioInfo() argument
80 info->input_level = input_level; in InitAudioInfo()
81 info->output_level = output_level; in InitAudioInfo()
85 AudioInfo info; in TEST_F() local
86 InitAudioInfo(&info, 0, 0); in TEST_F()
87 SignalAudioMonitor(info); in TEST_F()
94 AudioInfo info; in TEST_F() local
95 InitAudioInfo(&info, 0, 0); in TEST_F()
[all …]
/external/clang/lib/Index/
DIndexSymbol.cpp54 SymbolInfo Info; in getSymbolInfo() local
55 Info.Kind = SymbolKind::Unknown; in getSymbolInfo()
56 Info.SubKinds = SymbolSubKindSet(); in getSymbolInfo()
57 Info.Lang = SymbolLanguage::C; in getSymbolInfo()
62 Info.Kind = SymbolKind::Struct; break; in getSymbolInfo()
64 Info.Kind = SymbolKind::Union; break; in getSymbolInfo()
66 Info.Kind = SymbolKind::Class; in getSymbolInfo()
67 Info.Lang = SymbolLanguage::CXX; in getSymbolInfo()
70 Info.Kind = SymbolKind::Protocol; in getSymbolInfo()
71 Info.Lang = SymbolLanguage::CXX; in getSymbolInfo()
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_program.c92 nvc0_vp_assign_input_slots(struct nv50_ir_prog_info *info) in nvc0_vp_assign_input_slots() argument
96 for (n = 0, i = 0; i < info->numInputs; ++i) { in nvc0_vp_assign_input_slots()
97 switch (info->in[i].sn) { in nvc0_vp_assign_input_slots()
100 info->in[i].mask = 0x1; in nvc0_vp_assign_input_slots()
101 info->in[i].slot[0] = in nvc0_vp_assign_input_slots()
102 nvc0_shader_input_address(info->in[i].sn, 0) / 4; in nvc0_vp_assign_input_slots()
108 info->in[i].slot[c] = (0x80 + n * 0x10 + c * 0x4) / 4; in nvc0_vp_assign_input_slots()
116 nvc0_sp_assign_input_slots(struct nv50_ir_prog_info *info) in nvc0_sp_assign_input_slots() argument
121 for (i = 0; i < info->numInputs; ++i) { in nvc0_sp_assign_input_slots()
122 offset = nvc0_shader_input_address(info->in[i].sn, info->in[i].si); in nvc0_sp_assign_input_slots()
[all …]
/external/autotest/client/site_tests/graphics_dEQP/master/
Dbvt.txt1 dEQP-GLES2.info.vendor
2 dEQP-GLES2.info.renderer
3 dEQP-GLES2.info.version
4 dEQP-GLES2.info.shading_language_version
5 dEQP-GLES2.info.extensions
6 dEQP-GLES2.info.render_target
10 dEQP-GLES3.info.vendor
11 dEQP-GLES3.info.renderer
12 dEQP-GLES3.info.version
13 dEQP-GLES3.info.shading_language_version
[all …]
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_blit.c51 vc4_tile_blit(struct pipe_context *pctx, const struct pipe_blit_info *info) in vc4_tile_blit() argument
54 bool msaa = (info->src.resource->nr_samples > 1 || in vc4_tile_blit()
55 info->dst.resource->nr_samples > 1); in vc4_tile_blit()
59 if (util_format_is_depth_or_stencil(info->dst.resource->format)) in vc4_tile_blit()
62 if (info->scissor_enable) in vc4_tile_blit()
65 if ((info->mask & PIPE_MASK_RGBA) == 0) in vc4_tile_blit()
68 if (info->dst.box.x != info->src.box.x || in vc4_tile_blit()
69 info->dst.box.y != info->src.box.y || in vc4_tile_blit()
70 info->dst.box.width != info->src.box.width || in vc4_tile_blit()
71 info->dst.box.height != info->src.box.height) { in vc4_tile_blit()
[all …]
/external/mesa3d/src/gallium/state_trackers/nine/
Dvertexshader9.c41 struct nine_shader_info info; in NineVertexShader9_ctor() local
60 info.type = PIPE_SHADER_VERTEX; in NineVertexShader9_ctor()
61 info.byte_code = pFunction; in NineVertexShader9_ctor()
62 info.const_i_base = NINE_CONST_I_BASE(device->max_vs_const_f) / 16; in NineVertexShader9_ctor()
63 info.const_b_base = NINE_CONST_B_BASE(device->max_vs_const_f) / 16; in NineVertexShader9_ctor()
64 info.sampler_mask_shadow = 0x0; in NineVertexShader9_ctor()
65 info.sampler_ps1xtypes = 0x0; in NineVertexShader9_ctor()
66 info.fog_enable = 0; in NineVertexShader9_ctor()
67 info.point_size_min = 0; in NineVertexShader9_ctor()
68 info.point_size_max = 0; in NineVertexShader9_ctor()
[all …]

12345678910>>...406