Searched refs:info (Results 1 - 25 of 6953) sorted by relevance

1234567891011>>

/external/cblas/src/
H A Dcblas_xerbla.c8 void cblas_xerbla(int info, const char *rout, const char *form, ...) argument
20 if (info == 5 ) info = 4;
21 else if (info == 4 ) info = 5;
22 else if (info == 11) info = 9;
23 else if (info == 9 ) info = 11;
27 if (info
[all...]
/external/cblas/testing/
H A Dc_xerbla.c8 void cblas_xerbla(int info, const char *rout, const char *form, ...) argument
38 if (info == 5 ) info = 4;
39 else if (info == 4 ) info = 5;
40 else if (info == 11) info = 9;
41 else if (info == 9 ) info = 11;
45 if (info
100 F77_Integer *info=vinfo; local
104 int *info=vinfo; local
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_draw.h43 util_draw_init_info(struct pipe_draw_info *info) argument
45 memset(info, 0, sizeof(*info));
46 info->instance_count = 1;
47 info->max_index = 0xffffffff;
57 struct pipe_draw_info info; local
59 util_draw_init_info(&info);
60 info.mode = mode;
61 info.start = start;
62 info
75 struct pipe_draw_info info; local
95 struct pipe_draw_info info; local
118 struct pipe_draw_info info; local
141 struct pipe_draw_info info; local
[all...]
/external/libxcam/xcore/
H A Dxcam_buffer.cpp25 XCamVideoBufferInfo *info,
33 XCAM_ASSERT (info && format);
42 info->format = format;
43 info->width = width;
44 info->height = height;
45 info->aligned_width = aligned_width;
46 info->aligned_height = aligned_height;
50 info->color_bits = 8;
51 info->components = 1;
52 info
24 xcam_video_buffer_info_reset( XCamVideoBufferInfo *info, uint32_t format, uint32_t width, uint32_t height, uint32_t aligned_width, uint32_t aligned_height, uint32_t size) argument
[all...]
H A Dv4l2_buffer_proxy.cpp61 VideoBufferInfo info; local
64 v4l2_format_to_video_info (buf->get_format(), info);
65 set_video_info (info);
80 const struct v4l2_format &format, VideoBufferInfo &info)
82 info.format = format.fmt.pix.pixelformat;
83 info.color_bits = 8;
84 info.width = format.fmt.pix.width;
85 info.height = format.fmt.pix.height;
86 info.aligned_width = 0;
87 info
79 v4l2_format_to_video_info( const struct v4l2_format &format, VideoBufferInfo &info) argument
[all...]
/external/v8/src/parsing/
H A Dparsing.cc11 #include "src/parsing/parse-info.h"
18 bool ParseProgram(ParseInfo* info, bool internalize) { argument
19 DCHECK(info->is_toplevel());
20 DCHECK_NULL(info->literal());
22 Parser parser(info);
27 Isolate* isolate = info->isolate();
29 parser.SetCachedData(info);
30 result = parser.ParseProgram(isolate, info);
31 info->set_literal(result);
33 parser.ReportErrors(isolate, info
44 ParseFunction(ParseInfo* info, bool internalize) argument
67 ParseAny(ParseInfo* info, bool internalize) argument
[all...]
/external/adhd/cras/src/server/
H A Dcras_hfp_info.c56 int hfp_info_add_iodev(struct hfp_info *info, struct cras_iodev *dev) argument
59 if (info->odev)
61 info->odev = dev;
63 buf_reset(info->playback_buf);
65 if (info->idev)
67 info->idev = dev;
69 buf_reset(info->capture_buf);
78 int hfp_info_rm_iodev(struct hfp_info *info, struct cras_iodev *dev) argument
80 if (dev->direction == CRAS_STREAM_OUTPUT && info->odev == dev) {
81 info
90 hfp_info_has_iodev(struct hfp_info *info) argument
95 hfp_buf_acquire(struct hfp_info *info, struct cras_iodev *dev, uint8_t **buf, unsigned *count) argument
114 hfp_buf_size(struct hfp_info *info, struct cras_iodev *dev) argument
119 hfp_buf_release(struct hfp_info *info, struct cras_iodev *dev, unsigned written_frames) argument
133 hfp_buf_queued(struct hfp_info *info, const struct cras_iodev *dev) argument
144 hfp_write(struct hfp_info *info) argument
178 hfp_info_set_packet_size(struct hfp_info *info, unsigned int packet_size) argument
192 hfp_register_packet_size_changed_callback(struct hfp_info *info, void (*cb)(void *data), void *data) argument
204 hfp_unregister_packet_size_changed_callback(struct hfp_info *info, void *data) argument
216 hfp_read(struct hfp_info *info) argument
269 struct hfp_info *info = (struct hfp_info *)arg; local
303 struct hfp_info *info; local
329 hfp_info_running(struct hfp_info *info) argument
334 hfp_info_start(int fd, unsigned int mtu, struct hfp_info *info) argument
352 hfp_info_stop(struct hfp_info *info) argument
368 hfp_info_destroy(struct hfp_info *info) argument
[all...]
H A Dcras_hfp_info.h31 void hfp_info_destroy(struct hfp_info *info);
34 int hfp_info_running(struct hfp_info *info);
39 int hfp_info_start(int fd, unsigned int mtu, struct hfp_info *info);
44 int hfp_info_stop(struct hfp_info *info);
48 * info - The hfp_info holding the buffer to query.
52 int hfp_buf_queued(struct hfp_info *info, const struct cras_iodev *dev);
57 * info - The hfp_info holding buffer.
60 int hfp_buf_size(struct hfp_info *info, struct cras_iodev *dev);
65 * info - The hfp_info holding buffer.
71 void hfp_buf_acquire(struct hfp_info *info, struc
[all...]
/external/skqp/src/core/
H A DSkImageInfoPriv.h17 static inline bool SkImageInfoIsValidCommon(const SkImageInfo& info) { argument
18 if (info.width() <= 0 || info.height() <= 0) {
23 if (info.width() > kMaxDimension || info.height() > kMaxDimension) {
27 if (kUnknown_SkColorType == info.colorType() || kUnknown_SkAlphaType == info.alphaType()) {
31 if (kOpaque_SkAlphaType != info.alphaType() &&
32 (kRGB_565_SkColorType == info.colorType() || kGray_8_SkColorType == info
48 SkImageInfoIsValidAllowNumericalCS(const SkImageInfo& info) argument
65 SkImageInfoIsValidRenderingCS(const SkImageInfo& info) argument
82 SkImageInfoIsValid(const SkImageInfo& info, SkDestinationSurfaceColorMode colorMode) argument
[all...]
/external/selinux/libsemanage/src/
H A Dparse_utils.c14 const char *filename, void *parse_arg, parse_info_t ** info)
33 *info = tmp_info;
37 void parse_release(parse_info_t * info) argument
40 parse_close(info);
41 parse_dispose_line(info);
42 free(info);
45 int parse_open(semanage_handle_t * handle, parse_info_t * info) argument
48 info->file_stream = fopen(info->filename, "r");
49 if (!info
13 parse_init(semanage_handle_t * handle, const char *filename, void *parse_arg, parse_info_t ** info) argument
60 parse_close(parse_info_t * info) argument
68 parse_dispose_line(parse_info_t * info) argument
83 parse_skip_space(semanage_handle_t * handle, parse_info_t * info) argument
141 parse_assert_noeof(semanage_handle_t * handle, parse_info_t * info) argument
153 parse_assert_space(semanage_handle_t * handle, parse_info_t * info) argument
171 parse_assert_ch(semanage_handle_t * handle, parse_info_t * info, const char ch) argument
190 parse_assert_str(semanage_handle_t * handle, parse_info_t * info, const char *assert_str) argument
211 parse_optional_ch(parse_info_t * info, const char ch) argument
223 parse_optional_str(parse_info_t * info, const char *str) argument
234 parse_fetch_int(semanage_handle_t * handle, parse_info_t * info, int *num, char delim) argument
269 parse_fetch_string(semanage_handle_t * handle, parse_info_t * info, char **str, char delim) argument
[all...]
/external/strace/
H A Dprint_sg_req_info.c49 struct_sg_req_info info; local
55 if (!umove_or_printaddr(tcp, arg, &info)) {
62 info.req_state,
63 info.orphan,
64 info.sg_io_owned,
65 info.problem,
66 info.pack_id);
67 printaddr(ptr_to_kulong(info.usr_ptr));
68 tprintf(", duration=%u}", info.duration);
/external/iptables/extensions/
H A Dlibxt_length.c25 struct xt_length_info *info = cb->data; local
28 info->min = cb->val.u16_range[0];
29 info->max = cb->val.u16_range[0];
31 info->max = cb->val.u16_range[1];
33 info->invert = 1;
39 const struct xt_length_info *info = (void *)match->data; local
41 printf(" length %s", info->invert ? "!" : "");
42 if (info->min == info->max)
43 printf("%u", info
50 const struct xt_length_info *info = (void *)match->data; local
62 const struct xt_length_info *info = (void *)params->match->data; local
[all...]
/external/mesa3d/src/intel/isl/
H A Disl_gen8.c29 const struct isl_surf_init_info *info,
36 assert(info->samples >= 1);
38 if (info->samples == 1) {
49 if (info->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT)
63 if (info->dim != ISL_SURF_DIM_2D)
65 if (info->levels > 1)
69 if (isl_surf_usage_is_display(info->usage))
71 if (!isl_format_supports_multisampling(dev->info, info->format))
74 if (isl_surf_usage_is_depth_or_stencil(info
28 isl_gen8_choose_msaa_layout(const struct isl_device *dev, const struct isl_surf_init_info *info, enum isl_tiling tiling, enum isl_msaa_layout *msaa_layout) argument
94 gen8_choose_halign_el(const struct isl_device *dev, const struct isl_surf_init_info *restrict info) argument
148 gen8_choose_valign_el(const struct isl_device *dev, const struct isl_surf_init_info *restrict info) argument
183 isl_gen8_choose_image_alignment_el(const struct isl_device *dev, const struct isl_surf_init_info *restrict info, enum isl_tiling tiling, enum isl_dim_layout dim_layout, enum isl_msaa_layout msaa_layout, struct isl_extent3d *image_align_el) argument
[all...]
H A Disl_gen7.c29 const struct isl_surf_init_info *info,
37 assert(info->samples >= 1);
39 if (info->samples == 1) {
44 if (!isl_format_supports_multisampling(dev->info, info->format))
56 if (info->dim != ISL_SURF_DIM_2D)
58 if (info->levels > 1)
80 if (isl_format_has_sint_channel(info->format))
84 if (isl_surf_usage_is_display(info->usage))
100 if (isl_surf_usage_is_depth_or_stencil(info
28 isl_gen7_choose_msaa_layout(const struct isl_device *dev, const struct isl_surf_init_info *info, enum isl_tiling tiling, enum isl_msaa_layout *msaa_layout) argument
185 isl_gen6_filter_tiling(const struct isl_device *dev, const struct isl_surf_init_info *restrict info, isl_tiling_flags_t *flags) argument
296 gen7_choose_halign_el(const struct isl_device *dev, const struct isl_surf_init_info *restrict info) argument
321 gen7_choose_valign_el(const struct isl_device *dev, const struct isl_surf_init_info *restrict info, enum isl_tiling tiling) argument
391 isl_gen7_choose_image_alignment_el(const struct isl_device *dev, const struct isl_surf_init_info *restrict info, enum isl_tiling tiling, enum isl_dim_layout dim_layout, enum isl_msaa_layout msaa_layout, struct isl_extent3d *image_align_el) argument
[all...]
/external/mesa3d/src/gallium/tests/graw/
H A Docclusion-query.c17 static struct graw_info info; variable in typeref:struct:graw_info
91 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
92 info.ctx->bind_vertex_elements_state(info.ctx, handle);
97 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
103 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
108 set_vertex_shader(struct graw_info *info) argument
121 handle = graw_parse_vertex_shader(info
131 set_fragment_shader(struct graw_info *info) argument
[all...]
/external/skia/src/core/
H A DSkImageInfoPriv.h58 static inline bool SkImageInfoIsValidCommon(const SkImageInfo& info) { argument
59 if (info.width() <= 0 || info.height() <= 0) {
64 if (info.width() > kMaxDimension || info.height() > kMaxDimension) {
68 if (kUnknown_SkColorType == info.colorType() || kUnknown_SkAlphaType == info.alphaType()) {
72 if (kOpaque_SkAlphaType != info.alphaType() &&
73 (kRGB_565_SkColorType == info.colorType() || kGray_8_SkColorType == info
89 SkImageInfoIsValidAllowNumericalCS(const SkImageInfo& info) argument
106 SkImageInfoIsValidRenderingCS(const SkImageInfo& info) argument
123 SkImageInfoIsValid(const SkImageInfo& info, SkDestinationSurfaceColorMode colorMode) argument
[all...]
/external/strace/tests/
H A Drt_tgsigqueueinfo.c43 k_tgsigqueueinfo(const pid_t pid, const int sig, const void *const info) argument
49 info);
61 TAIL_ALLOC_OBJECT_CONST_PTR(siginfo_t, info);
62 memset(info, 0, sizeof(*info));
63 info->si_signo = SIGUSR1;
64 info->si_errno = ENOENT;
65 info->si_code = SI_QUEUE;
66 info->si_pid = getpid();
67 info
[all...]
/external/strace/tests-m32/
H A Drt_tgsigqueueinfo.c43 k_tgsigqueueinfo(const pid_t pid, const int sig, const void *const info) argument
49 info);
61 TAIL_ALLOC_OBJECT_CONST_PTR(siginfo_t, info);
62 memset(info, 0, sizeof(*info));
63 info->si_signo = SIGUSR1;
64 info->si_errno = ENOENT;
65 info->si_code = SI_QUEUE;
66 info->si_pid = getpid();
67 info
[all...]
/external/strace/tests-mx32/
H A Drt_tgsigqueueinfo.c43 k_tgsigqueueinfo(const pid_t pid, const int sig, const void *const info) argument
49 info);
61 TAIL_ALLOC_OBJECT_CONST_PTR(siginfo_t, info);
62 memset(info, 0, sizeof(*info));
63 info->si_signo = SIGUSR1;
64 info->si_errno = ENOENT;
65 info->si_code = SI_QUEUE;
66 info->si_pid = getpid();
67 info
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
H A DLabelInfo.java17 * Data container that is attached to {@link Label#info} objects to store flow
55 final LabelInfo info = create(label);
56 if (info.target || info.successor) {
57 info.multiTarget = true;
59 info.target = true;
71 final LabelInfo info = create(label);
72 info.successor = true;
73 if (info.target) {
74 info
[all...]
/external/libcxx/test/std/utilities/type.index/type.index.members/
H A Dctor.pass.cpp22 std::type_info const & info = typeid(int); member in class:std
23 std::type_index t1(info);
24 assert(t1.name() == info.name());
/external/elfutils/tests/
H A Drun-unstrip-test3.sh9 # gcc -o testfile-info-link -g testprog.c
10 # objcopy --only-keep-debug testfile-info-link testfile-info-link.debuginfo
11 # eu-strip --strip-debug -o testfile-info-link.stripped testfile-info-link
13 original=testfile-info-link
14 stripped=testfile-info-link.stripped
15 debugfile=testfile-info-link.debuginfo
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-private.hh211 hb_glyph_info_t *info = buffer->info; local
214 unsigned int syllable = info[start].syllable();
215 while (++start < count && syllable == info[start].syllable())
254 _hb_glyph_info_set_unicode_props (hb_glyph_info_t *info, hb_buffer_t *buffer) argument
257 unsigned int u = info->codepoint;
303 props |= unicode->modified_combining_class (info->codepoint)<<8;
317 info->unicode_props() = props;
321 _hb_glyph_info_set_general_category (hb_glyph_info_t *info, argument
325 info
329 _hb_glyph_info_get_general_category(const hb_glyph_info_t *info) argument
335 _hb_glyph_info_is_unicode_mark(const hb_glyph_info_t *info) argument
340 _hb_glyph_info_set_modified_combining_class(hb_glyph_info_t *info, unsigned int modified_class) argument
348 _hb_glyph_info_get_modified_combining_class(const hb_glyph_info_t *info) argument
356 _hb_glyph_info_is_unicode_space(const hb_glyph_info_t *info) argument
362 _hb_glyph_info_set_unicode_space_fallback_type(hb_glyph_info_t *info, hb_unicode_funcs_t::space_t s) argument
369 _hb_glyph_info_get_unicode_space_fallback_type(const hb_glyph_info_t *info) argument
379 _hb_glyph_info_is_default_ignorable(const hb_glyph_info_t *info) argument
385 _hb_glyph_info_is_default_ignorable_and_not_hidden(const hb_glyph_info_t *info) argument
393 _hb_glyph_info_is_unicode_format(const hb_glyph_info_t *info) argument
399 _hb_glyph_info_is_zwnj(const hb_glyph_info_t *info) argument
404 _hb_glyph_info_is_zwj(const hb_glyph_info_t *info) argument
409 _hb_glyph_info_is_joiner(const hb_glyph_info_t *info) argument
414 _hb_glyph_info_flip_joiners(hb_glyph_info_t *info) argument
447 _hb_glyph_info_clear_lig_props(hb_glyph_info_t *info) argument
455 _hb_glyph_info_set_lig_props_for_ligature(hb_glyph_info_t *info, unsigned int lig_id, unsigned int lig_num_comps) argument
463 _hb_glyph_info_set_lig_props_for_mark(hb_glyph_info_t *info, unsigned int lig_id, unsigned int lig_comp) argument
471 _hb_glyph_info_set_lig_props_for_component(hb_glyph_info_t *info, unsigned int comp) argument
477 _hb_glyph_info_get_lig_id(const hb_glyph_info_t *info) argument
483 _hb_glyph_info_ligated_internal(const hb_glyph_info_t *info) argument
489 _hb_glyph_info_get_lig_comp(const hb_glyph_info_t *info) argument
498 _hb_glyph_info_get_lig_num_comps(const hb_glyph_info_t *info) argument
518 _hb_glyph_info_set_glyph_props(hb_glyph_info_t *info, unsigned int props) argument
524 _hb_glyph_info_get_glyph_props(const hb_glyph_info_t *info) argument
530 _hb_glyph_info_is_base_glyph(const hb_glyph_info_t *info) argument
536 _hb_glyph_info_is_ligature(const hb_glyph_info_t *info) argument
542 _hb_glyph_info_is_mark(const hb_glyph_info_t *info) argument
548 _hb_glyph_info_substituted(const hb_glyph_info_t *info) argument
554 _hb_glyph_info_ligated(const hb_glyph_info_t *info) argument
560 _hb_glyph_info_multiplied(const hb_glyph_info_t *info) argument
566 _hb_glyph_info_ligated_and_didnt_multiply(const hb_glyph_info_t *info) argument
572 _hb_glyph_info_clear_ligated_and_multiplied(hb_glyph_info_t *info) argument
579 _hb_glyph_info_clear_substituted(hb_glyph_info_t *info) argument
[all...]
/external/adhd/cras/src/tests/
H A Dhfp_info_unittest.cc14 static struct hfp_info *info; variable in typeref:struct:hfp_info
32 info = hfp_info_create();
33 ASSERT_NE(info, (void *)NULL);
37 ASSERT_EQ(0, hfp_info_add_iodev(info, &dev));
38 ASSERT_TRUE(hfp_info_has_iodev(info));
41 ASSERT_EQ(0, hfp_info_rm_iodev(info, &dev));
42 ASSERT_FALSE(hfp_info_has_iodev(info));
44 hfp_info_destroy(info);
48 info = hfp_info_create();
49 ASSERT_NE(info, (voi
[all...]
/external/libcxxabi/src/
H A Dprivate_typeinfo.cpp232 __dynamic_cast_info info = {thrown_class_type, 0, this, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,};
233 info.number_of_dst_type = 1;
234 thrown_class_type->has_unambiguous_public_base(&info, adjustedPtr, public_path);
235 if (info.path_dst_ptr_to_static_ptr == public_path)
237 adjustedPtr = const_cast<void*>(info.dst_ptr_leading_to_static_ptr);
248 __class_type_info::process_found_base_class(__dynamic_cast_info* info, argument
252 if (info->dst_ptr_leading_to_static_ptr == 0)
255 info->dst_ptr_leading_to_static_ptr = adjustedPtr;
256 info->path_dst_ptr_to_static_ptr = path_below;
257 info
276 has_unambiguous_public_base(__dynamic_cast_info* info, void* adjustedPtr, int path_below) const argument
285 has_unambiguous_public_base(__dynamic_cast_info* info, void* adjustedPtr, int path_below) const argument
296 has_unambiguous_public_base(__dynamic_cast_info* info, void* adjustedPtr, int path_below) const argument
317 has_unambiguous_public_base(__dynamic_cast_info* info, void* adjustedPtr, int path_below) const argument
636 __dynamic_cast_info info = {dst_type, static_ptr, static_type, src2dst_offset, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,}; local
722 process_static_type_above_dst(__dynamic_cast_info* info, const void* dst_ptr, const void* current_ptr, int path_below) const argument
769 process_static_type_below_dst(__dynamic_cast_info* info, const void* current_ptr, int path_below) const argument
836 search_below_dst(__dynamic_cast_info* info, const void* current_ptr, int path_below, bool use_strcmp) const argument
1008 search_below_dst(__dynamic_cast_info* info, const void* current_ptr, int path_below, bool use_strcmp) const argument
1085 search_below_dst(__dynamic_cast_info* info, const void* current_ptr, int path_below, bool use_strcmp) const argument
1154 search_above_dst(__dynamic_cast_info* info, const void* dst_ptr, const void* current_ptr, int path_below, bool use_strcmp) const argument
1224 search_above_dst(__dynamic_cast_info* info, const void* dst_ptr, const void* current_ptr, int path_below, bool use_strcmp) const argument
1239 search_above_dst(__dynamic_cast_info* info, const void* dst_ptr, const void* current_ptr, int path_below, bool use_strcmp) const argument
1254 search_above_dst(__dynamic_cast_info* info, const void* dst_ptr, const void* current_ptr, int path_below, bool use_strcmp) const argument
1275 search_below_dst(__dynamic_cast_info* info, const void* current_ptr, int path_below, bool use_strcmp) const argument
[all...]

Completed in 775 milliseconds

1234567891011>>