HomeSort by relevance Sort by last modified time
    Searched refs:info (Results 101 - 125 of 14015) sorted by null

1 2 3 45 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/opcodes/
d30v-dis.c 118 print_insn (struct disassemble_info *info,
129 (*info->fprintf_func) (info->stream, "%s", insn->op->name);
139 (*info->fprintf_func) (info->stream, "%s", d30v_cc_names[val]);
146 (*info->fprintf_func) (info->stream, ".l");
148 (*info->fprintf_func) (info->stream, ".s");
152 (*info->fprintf_func) (info->stream, "/%s", d30v_ecc_names[insn->ecc])
    [all...]
i860-dis.c 75 print_br_address (disassemble_info *info, bfd_vma memaddr, long val)
80 (*info->fprintf_func) (info->stream, "0x%08lx", adj);
84 if (info->print_address_func && adj != 0)
86 (*info->fprintf_func) (info->stream, "\t// ");
87 (*info->print_address_func) (adj, info);
94 print_insn_i860 (bfd_vma memaddr, disassemble_info *info)
101 status = (*info->read_memory_func) (memaddr, buff, sizeof (buff), info)
    [all...]
tic4x-dis.c 115 tic4x_print_char (struct disassemble_info * info, char ch)
117 if (info != NULL)
118 (*info->fprintf_func) (info->stream, "%c", ch);
123 tic4x_print_str (struct disassemble_info *info, const char *str)
125 if (info != NULL)
126 (*info->fprintf_func) (info->stream, "%s", str);
131 tic4x_print_register (struct disassemble_info *info, unsigned long regno)
152 if (info != NULL
    [all...]
dlx-dis.c 42 /* Print one instruction from MEMADDR on INFO->STREAM.
90 operand_deliminator (struct disassemble_info *info, char *ptr)
96 (*info->fprintf_func) (info->stream, "%c", ' ');
104 dlx_r_type (struct disassemble_info *info)
164 (*info->fprintf_func) (info->stream, "%s", dlx_r_opcode[idx].name);
169 operand_deliminator (info, dlx_r_opcode[idx].name);
170 (*info->fprintf_func) (info->stream, "r%d,", (int)rd)
    [all...]
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
EditorInfoTest.java 44 EditorInfo info = new EditorInfo(); local
46 info.actionId = 1;
47 info.actionLabel = "actionLabel";
48 info.fieldId = 2;
49 info.fieldName = "fieldName";
50 info.hintText = "hintText";
51 info.imeOptions = EditorInfo.IME_FLAG_NO_ENTER_ACTION;
52 info.initialCapsMode = TextUtils.CAP_MODE_CHARACTERS;
53 info.initialSelEnd = 10;
54 info.initialSelStart = 0
99 EditorInfo info = new EditorInfo(); local
    [all...]
  /external/autotest/frontend/client/test/autotest/moblab/rpc/
CloudStorageInfoTest.java 10 CloudStorageInfo info = new CloudStorageInfo(); local
11 JSONObject jsonInfo = info.toJson();
19 info.setBotoKey("key");
20 info.setBotoSecret("secret");
21 info.setImageStorageServer("gs://image_bucket");
22 info.setResultStorageServer("gs://result_bucket");
23 info.setUseExistingBotoFile(true);
24 jsonInfo = info.toJson();
36 info = new CloudStorageInfo();
37 info.fromJson(jsonInfo)
    [all...]
NetworkInfoTest.java 12 NetworkInfo info = new NetworkInfo(null, true); local
13 JSONObject jsonInfo = info.toJson();
19 info = new NetworkInfo();
20 info.fromJson(jsonInfo);
21 assertEquals(0, info.getServerIps().length);
22 assertTrue(info.isConnectedToGoogle());
26 info = new NetworkInfo(serverIps, true);
27 jsonInfo = info.toJson();
36 info = new NetworkInfo();
37 info.fromJson(jsonInfo)
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_blit.c 51 vc4_tile_blit(struct pipe_context *pctx, const struct pipe_blit_info *info)
54 bool msaa = (info->src.resource->nr_samples > 1 ||
55 info->dst.resource->nr_samples > 1);
59 if (util_format_is_depth_or_stencil(info->dst.resource->format))
62 if (info->scissor_enable)
65 if ((info->mask & PIPE_MASK_RGBA) == 0)
68 if (info->dst.box.x != info->src.box.x ||
69 info->dst.box.y != info->src.box.y |
210 struct pipe_blit_info info = *blit_info; local
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_sbe.c 33 const struct ilo_state_sbe_info *info)
37 assert(info->attr_count <= ILO_STATE_SBE_MAX_ATTR_COUNT);
39 assert(info->vue_read_base + info->vue_read_count <=
40 info->cv_vue_attr_count);
63 assert(info->vue_read_base % 2 == 0 && info->vue_read_base <= 126);
64 assert(info->vue_read_count <= 32);
72 if (ilo_dev_gen(dev) < ILO_GEN(7.5) && info->point_sprite_enables)
73 assert(info->cv_is_point)
323 struct ilo_state_sbe_info info; local
    [all...]
  /external/v8/src/
background-parsing-task.cc 15 info.reset();
31 ParseInfo* info = new ParseInfo(isolate->allocator()); local
32 info->set_toplevel();
33 source->info.reset(info);
34 info->set_isolate(isolate);
35 info->set_source_stream(source->source_stream.get());
36 info->set_source_stream_encoding(source->encoding);
37 info->set_hash_seed(isolate->heap()->HashSeed());
38 info->set_unicode_cache(&source_->unicode_cache)
    [all...]
  /external/webrtc/talk/session/media/
currentspeakermonitor_unittest.cc 63 void SignalAudioMonitor(const AudioInfo& info) {
64 source_.SignalAudioMonitor(&source_, info);
79 static void InitAudioInfo(AudioInfo* info, int input_level, int output_level) {
80 info->input_level = input_level;
81 info->output_level = output_level;
85 AudioInfo info; local
86 InitAudioInfo(&info, 0, 0);
87 SignalAudioMonitor(info);
94 AudioInfo info; local
95 InitAudioInfo(&info, 0, 0)
116 AudioInfo info; local
143 AudioInfo info; local
172 AudioInfo info; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
seq.h 105 int snd_seq_system_info_get_queues(const snd_seq_system_info_t *info);
106 int snd_seq_system_info_get_clients(const snd_seq_system_info_t *info);
107 int snd_seq_system_info_get_ports(const snd_seq_system_info_t *info);
108 int snd_seq_system_info_get_channels(const snd_seq_system_info_t *info);
109 int snd_seq_system_info_get_cur_clients(const snd_seq_system_info_t *info);
110 int snd_seq_system_info_get_cur_queues(const snd_seq_system_info_t *info);
112 int snd_seq_system_info(snd_seq_t *handle, snd_seq_system_info_t *info);
141 int snd_seq_client_info_get_client(const snd_seq_client_info_t *info);
142 snd_seq_client_type_t snd_seq_client_info_get_type(const snd_seq_client_info_t *info);
143 const char *snd_seq_client_info_get_name(snd_seq_client_info_t *info);
    [all...]
  /external/drm_gralloc/
gralloc_drm_radeon.c 81 static int radeon_get_pitch_align(struct radeon_info *info, int bpe, uint32_t tiling)
85 if (info->chip_family >= CHIP_FAMILY_R600) {
88 pitch_align = (((info->group_bytes / 8) / bpe) *
89 info->num_banks) * 8;
91 pitch_align = MAX(info->num_banks * 8, pitch_align);
94 pitch_align = MAX(8, (info->group_bytes / (8 * bpe)));
96 pitch_align = MAX(info->group_bytes / bpe, pitch_align);
98 if (info->have_tiling_info)
100 pitch_align = MAX(64, info->group_bytes / bpe);
122 static int radeon_get_height_align(struct radeon_info *info, uint32_t tiling
259 struct radeon_info *info = (struct radeon_info *) drv; local
325 struct radeon_info *info = (struct radeon_info *) drv; local
508 struct radeon_info *info; local
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
wrstabs.c 339 stab_write_symbol (struct stab_write_handle *info, int type, int desc,
351 h = string_hash_lookup (&info->strhash, string, TRUE, TRUE);
362 strx = info->strings_size;
364 if (info->last_string == NULL)
365 info->strings = h;
367 info->last_string->next = h;
368 info->last_string = h;
369 info->strings_size += strlen (string) + 1;
374 bfd_put_32 (info->abfd, strx, sym);
375 bfd_put_8 (info->abfd, type, sym + 4)
467 struct stab_write_handle info; local
546 struct stab_write_handle *info = (struct stab_write_handle *) p; local
563 struct stab_write_handle *info = (struct stab_write_handle *) p; local
580 struct stab_write_handle *info = (struct stab_write_handle *) p; local
606 struct stab_write_handle *info = (struct stab_write_handle *) p; local
631 struct stab_write_handle *info = (struct stab_write_handle *) p; local
691 struct stab_write_handle *info = (struct stab_write_handle *) p; local
732 struct stab_write_handle *info = (struct stab_write_handle *) p; local
750 struct stab_write_handle *info = (struct stab_write_handle *) p; local
782 struct stab_write_handle *info = (struct stab_write_handle *) p; local
930 struct stab_write_handle *info = (struct stab_write_handle *) p; local
943 struct stab_write_handle *info = (struct stab_write_handle *) p; local
979 struct stab_write_handle *info = (struct stab_write_handle *) p; local
991 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1018 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1071 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1112 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1141 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1239 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1250 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1311 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1351 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1413 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1445 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1495 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1549 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1615 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1738 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1751 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1762 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1778 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1852 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1867 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1883 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1932 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1955 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1974 struct stab_write_handle *info = (struct stab_write_handle *) p; local
1993 struct stab_write_handle *info = (struct stab_write_handle *) p; local
2016 struct stab_write_handle *info = (struct stab_write_handle *) p; local
2085 struct stab_write_handle *info = (struct stab_write_handle *) p; local
2113 struct stab_write_handle *info = (struct stab_write_handle *) p; local
2163 struct stab_write_handle *info = (struct stab_write_handle *) p; local
2216 struct stab_write_handle *info = (struct stab_write_handle *) p; local
2255 struct stab_write_handle *info = (struct stab_write_handle *) p; local
    [all...]
  /external/iptables/extensions/
libxt_rateest.c 116 struct xt_rateest_match_info *info = (void *)(*match)->data; local
130 strncpy(info->name1, optarg, sizeof(info->name1) - 1);
143 strncpy(info->name2, optarg, sizeof(info->name2) - 1);
144 info->flags |= XT_RATEEST_MATCH_REL;
157 info->flags |= XT_RATEEST_MATCH_BPS;
163 if (rateest_get_rate(&info->bps1, argv[optind]) < 0)
180 info->flags |= XT_RATEEST_MATCH_PPS;
190 info->pps1 = val
293 struct xt_rateest_match_info *info = cb->data; local
342 const struct xt_rateest_match_info *info = (const void *)match->data; local
417 const struct xt_rateest_match_info *info = (const void *)match->data; local
    [all...]
libxt_tcpmss.c 39 const struct xt_tcpmss_match_info *info = (void *)match->data; local
41 printf(" tcpmss match %s", info->invert ? "!" : "");
42 if (info->mss_min == info->mss_max)
43 printf("%u", info->mss_min);
45 printf("%u:%u", info->mss_min, info->mss_max);
50 const struct xt_tcpmss_match_info *info = (void *)match->data; local
52 printf("%s --mss ", info->invert ? " !" : "");
53 if (info->mss_min == info->mss_max
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
RevokedStatus.java 15 RevokedInfo info; field in class:RevokedStatus
18 RevokedInfo info)
20 this.info = info;
27 this.info = new RevokedInfo(new ASN1GeneralizedTime(revocationDate), CRLReason.lookup(reason));
32 return OCSPUtils.extractDate(info.getRevocationTime());
37 return (info.getRevocationReason() != null);
48 if (info.getRevocationReason() == null)
53 return info.getRevocationReason().getValue().intValue();
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_fps.c 43 struct fps_info *info = gr->query_data; local
46 info->frames++;
48 if (info->last_time) {
49 if (info->last_time + gr->pane->period <= now) {
50 double fps = (uint64_t)info->frames * 1000000 /
51 (double)(now - info->last_time);
52 info->frames = 0;
53 info->last_time = now;
59 info->last_time = now;
  /external/mesa3d/src/gallium/tests/graw/
fs-write-z.c 14 static struct graw_info info; variable in typeref:struct:graw_info
90 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
91 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);
121 handle = graw_parse_vertex_shader(info.ctx, text);
122 info.ctx->bind_vs_state(info.ctx, handle)
    [all...]
quad-tex.c 10 static struct graw_info info; variable in typeref:struct:graw_info
53 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
54 info.ctx->bind_vertex_elements_state(info.ctx, handle);
60 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
66 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
82 handle = graw_parse_vertex_shader(info.ctx, text);
83 info.ctx->bind_vs_state(info.ctx, handle)
    [all...]
tex-srgb.c 10 static struct graw_info info; variable in typeref:struct:graw_info
69 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
70 info.ctx->bind_vertex_elements_state(info.ctx, handle);
76 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
82 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
98 handle = graw_parse_vertex_shader(info.ctx, text);
99 info.ctx->bind_vs_state(info.ctx, handle)
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
StoringInvocationUnit.java 27 import proguard.optimize.info.*;
135 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field); local
136 if (info != null)
138 info.generalizeReferencedClass(value);
145 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field); local
146 return info != null ?
147 info.getReferencedClass() :
154 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field); local
155 if (info != null)
157 info.generalizeValue(value)
164 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field); local
173 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local
183 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local
192 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local
202 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local
    [all...]
  /build/kati/testcase/
or.mk 7 $(or ${FALSE}, $(info PASS_1))
9 $(info $(or ${TRUE}, $(info FAIL_2)))
11 $(info $(or ${FALSE}, PASS, PASS))
13 $(info $(or ${FALSE}, $(X) ))
14 $(info $(or ${FALSE}, $(Y) ))
15 $(info $(or ${FALSE} , PASS, PASS))
  /external/selinux/libsemanage/src/
parse_utils.h 24 void *parse_arg, parse_info_t ** info);
27 extern void parse_release(parse_info_t * info);
30 extern int parse_open(semanage_handle_t * handle, parse_info_t * info);
33 extern void parse_close(parse_info_t * info);
36 extern void parse_dispose_line(parse_info_t * info);
39 extern int parse_skip_space(semanage_handle_t * handle, parse_info_t * info);
42 extern int parse_assert_noeof(semanage_handle_t * handle, parse_info_t * info);
46 extern int parse_assert_space(semanage_handle_t * handle, parse_info_t * info);
51 parse_info_t * info, const char ch);
57 parse_info_t * info, const char *assert_str)
    [all...]
  /external/tremolo/Tremolo/
mapping0.c 50 void mapping_clear_info(vorbis_info_mapping *info){
51 if(info){
52 if(info->chmuxlist)_ogg_free(info->chmuxlist);
53 if(info->submaplist)_ogg_free(info->submaplist);
54 if(info->coupling)_ogg_free(info->coupling);
55 memset(info,0,sizeof(*info));
    [all...]

Completed in 761 milliseconds

1 2 3 45 6 7 8 91011>>