/third_party/mesa3d/src/glx/apple/ |
D | apple_glx_context.c | 101 is_context_valid(struct apple_glx_context *ac) in is_context_valid() argument 108 if (ac == i) { in is_context_valid() 130 struct apple_glx_context *ac; in apple_glx_create_context() local 136 ac = malloc(sizeof *ac); in apple_glx_create_context() 138 if (NULL == ac) { in apple_glx_create_context() 147 free(ac); in apple_glx_create_context() 151 ac->context_obj = NULL; in apple_glx_create_context() 152 ac->pixel_format_obj = NULL; in apple_glx_create_context() 153 ac->drawable = NULL; in apple_glx_create_context() 154 ac->thread_id = pthread_self(); in apple_glx_create_context() [all …]
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_shader_args.c | 257 ac_add_arg(&args->ac, AC_ARG_SGPR, 1, AC_ARG_CONST_PTR, &args->descriptor_sets[i]); in declare_global_input_sgprs() 260 ac_add_arg(&args->ac, AC_ARG_SGPR, 1, AC_ARG_CONST_PTR_PTR, &args->descriptor_sets[0]); in declare_global_input_sgprs() 265 ac_add_arg(&args->ac, AC_ARG_SGPR, 1, AC_ARG_CONST_PTR, &args->ac.push_constants); in declare_global_input_sgprs() 269 ac_add_arg(&args->ac, AC_ARG_SGPR, 1, AC_ARG_INT, &args->ac.inline_push_consts[i]); in declare_global_input_sgprs() 271 args->ac.inline_push_const_mask = user_sgpr_info->inline_push_constant_mask; in declare_global_input_sgprs() 274 ac_add_arg(&args->ac, AC_ARG_SGPR, 1, AC_ARG_CONST_DESC_PTR, &args->streamout_buffers); in declare_global_input_sgprs() 284 ac_add_arg(&args->ac, AC_ARG_SGPR, 2, AC_ARG_INT, &args->prolog_inputs); in declare_vs_specific_input_sgprs() 289 ac_add_arg(&args->ac, AC_ARG_SGPR, 1, AC_ARG_CONST_DESC_PTR, &args->ac.vertex_buffers); in declare_vs_specific_input_sgprs() 291 ac_add_arg(&args->ac, AC_ARG_SGPR, 1, AC_ARG_INT, &args->ac.base_vertex); in declare_vs_specific_input_sgprs() 293 ac_add_arg(&args->ac, AC_ARG_SGPR, 1, AC_ARG_INT, &args->ac.draw_id); in declare_vs_specific_input_sgprs() [all …]
|
D | radv_nir_to_llvm.c | 44 struct ac_llvm_context ac; member 111 LLVMValueRef desc_sets = ac_get_arg(&ctx->ac, ctx->args->descriptor_sets[0]); in load_descriptor_sets() 116 ac_build_load_to_sgpr(&ctx->ac, desc_sets, LLVMConstInt(ctx->ac.i32, i, false)); in load_descriptor_sets() 123 ctx->descriptor_sets[i] = ac_get_arg(&ctx->ac, ctx->args->descriptor_sets[i]); in load_descriptor_sets() 163 if (ctx->ac.gfx_level >= GFX10) { in create_function() 172 create_llvm_function(&ctx->ac, ctx->ac.module, ctx->ac.builder, &ctx->args->ac, in create_function() 176 ctx->ring_offsets = ac_build_intrinsic(&ctx->ac, "llvm.amdgcn.implicit.buffer.ptr", in create_function() 177 LLVMPointerType(ctx->ac.i8, AC_ADDR_SPACE_CONST), NULL, 0, in create_function() 179 ctx->ring_offsets = LLVMBuildBitCast(ctx->ac.builder, ctx->ring_offsets, in create_function() 180 ac_array_in_const_addr_space(ctx->ac.v4i32), ""); in create_function() [all …]
|
D | radv_nir_lower_abi.c | 48 nir_ssa_def *ring_offsets = ac_nir_load_arg(b, &s->args->ac, arg); in load_ring() 56 nir_ssa_def *settings = ac_nir_load_arg(b, &s->args->ac, s->args->ngg_culling_settings); in nggc_bool_setting() 72 return ac_nir_load_arg(b, &s->args->ac, s->args->ac.tcs_factor_offset); in lower_abi_instr() 78 return ac_nir_load_arg(b, &s->args->ac, s->args->ac.tess_offchip_offset); in lower_abi_instr() 87 return ac_nir_load_arg(b, &s->args->ac, s->args->ac.es2gs_offset); in lower_abi_instr() 91 …return nir_extract_u8(b, ac_nir_load_arg(b, &s->args->ac, s->args->ac.tcs_rel_ids), nir_imm_int(b,… in lower_abi_instr() 97 nir_ssa_def *arg = ac_nir_load_arg(b, &s->args->ac, s->args->ac.tes_rel_patch_id); in lower_abi_instr() 114 … return ac_nir_load_arg(b, &s->args->ac, s->args->ac.gs_vtx_offset[nir_intrinsic_base(intrin)]); in lower_abi_instr() 117 return nir_ubfe(b, ac_nir_load_arg(b, &s->args->ac, s->args->ac.gs_tg_info), in lower_abi_instr() 121 return nir_ubfe(b, ac_nir_load_arg(b, &s->args->ac, s->args->ac.gs_tg_info), in lower_abi_instr() [all …]
|
/third_party/rust/crates/autocfg/src/ |
D | tests.rs | 29 let ac = AutoCfg::for_test().unwrap(); in autocfg_version() localVariable 30 println!("version: {:?}", ac.rustc_version); in autocfg_version() 31 assert!(ac.probe_rustc_version(1, 0)); in autocfg_version() 49 let ac = AutoCfg::for_test().unwrap(); in probe_add() localVariable 50 let add = ac.core_std("ops::Add"); in probe_add() 54 assert!(ac.probe_path(&add)); in probe_add() 55 assert!(ac.probe_trait(&add)); in probe_add() 56 assert!(ac.probe_trait(&add_rhs)); in probe_add() 57 assert!(ac.probe_trait(&add_rhs_output)); in probe_add() 58 ac.assert_min(1, 27, ac.probe_type(&dyn_add_rhs_output)); in probe_add() [all …]
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | gfx10_shader_ngg.c | 44 LLVMBuilderRef builder = ctx->ac.builder; in gfx10_get_thread_id_in_tg() 47 LLVMConstInt(ctx->ac.i32, ctx->ac.wave_size, false), ""); in gfx10_get_thread_id_in_tg() 48 return LLVMBuildAdd(builder, tmp, ac_get_thread_id(&ctx->ac), ""); in gfx10_get_thread_id_in_tg() 68 LLVMValueRef buf_ptr = ac_get_arg(&ctx->ac, ctx->internal_bindings); in ngg_get_query_buf() 70 return ac_build_load_to_sgpr(&ctx->ac, buf_ptr, in ngg_get_query_buf() 71 LLVMConstInt(ctx->ac.i32, SI_GS_QUERY_BUF, false)); in ngg_get_query_buf() 76 LLVMValueRef buf_ptr = ac_get_arg(&ctx->ac, ctx->internal_bindings); in ngg_get_emulated_counters_buf() 78 return ac_build_load_to_sgpr(&ctx->ac, buf_ptr, in ngg_get_emulated_counters_buf() 79 … LLVMConstInt(ctx->ac.i32, SI_GS_QUERY_EMULATED_COUNTERS_BUF, false)); in ngg_get_emulated_counters_buf() 92 return LLVMConstInt(ctx->ac.i32, *num_vertices, false); in ngg_get_vertices_per_prim() [all …]
|
D | si_shader_llvm_gs.c | 35 return LLVMBuildICmp(ctx->ac.builder, LLVMIntULT, ac_get_thread_id(&ctx->ac), in si_is_es_thread() 42 return LLVMBuildICmp(ctx->ac.builder, LLVMIntULT, ac_get_thread_id(&ctx->ac), in si_is_gs_thread() 50 ac_build_endif(&ctx->ac, ctx->merged_wrap_if_label); in si_set_es_return_value_for_gs() 96 return ac_get_arg(&ctx->ac, ctx->args.gs_wave_id); in si_get_gs_wave_id() 101 LLVMValueRef buf_ptr = ac_get_arg(&ctx->ac, ctx->internal_bindings); in ngg_get_emulated_counters_buf() 103 return ac_build_load_to_sgpr(&ctx->ac, buf_ptr, in ngg_get_emulated_counters_buf() 104 … LLVMConstInt(ctx->ac.i32, SI_GS_QUERY_EMULATED_COUNTERS_BUF, false)); in ngg_get_emulated_counters_buf() 114 ac_build_waitcnt(&ctx->ac, AC_WAIT_VSTORE); in si_llvm_gs_build_end() 122 tmp = LLVMBuildTrunc(ctx->ac.builder, tmp, ctx->ac.i1, ""); in si_llvm_gs_build_end() 123 ac_build_ifcc(&ctx->ac, tmp, 5229); /* if (GS_PIPELINE_STATS_EMU) */ in si_llvm_gs_build_end() [all …]
|
D | si_shader_llvm_vs.c | 36 return LLVMBuildAShr(ctx->ac.builder, i32, LLVMConstInt(ctx->ac.i32, 16, 0), ""); in unpack_sint16() 38 return LLVMBuildSExt(ctx->ac.builder, LLVMBuildTrunc(ctx->ac.builder, i32, ctx->ac.i16, ""), in unpack_sint16() 39 ctx->ac.i32, ""); in unpack_sint16() 50 LLVMBuildICmp(ctx->ac.builder, LLVMIntULE, vertex_id, ctx->ac.i32_1, ""); in load_input_vs() 54 LLVMValueRef sel_y1 = LLVMBuildICmp(ctx->ac.builder, LLVMIntNE, vertex_id, ctx->ac.i32_1, ""); in load_input_vs() 67 LLVMValueRef x = LLVMBuildSelect(ctx->ac.builder, sel_x1, x1, x2, ""); in load_input_vs() 68 LLVMValueRef y = LLVMBuildSelect(ctx->ac.builder, sel_y1, y1, y2, ""); in load_input_vs() 70 out[0] = LLVMBuildSIToFP(ctx->ac.builder, x, ctx->ac.f32, ""); in load_input_vs() 71 out[1] = LLVMBuildSIToFP(ctx->ac.builder, y, ctx->ac.f32, ""); in load_input_vs() 73 out[3] = ctx->ac.f32_1; in load_input_vs() [all …]
|
D | si_shader_llvm_resources.c | 36 LLVMBuilderRef builder = ctx->ac.builder; in si_llvm_bound_index() 37 LLVMValueRef c_max = LLVMConstInt(ctx->ac.i32, num - 1, 0); in si_llvm_bound_index() 58 LLVMValueRef ptr = ac_get_arg(&ctx->ac, ctx->const_and_shader_buffers); in load_const_buffer_desc_fast_path() 66 ptr = LLVMBuildPtrToInt(ctx->ac.builder, ptr, ctx->ac.intptr, ""); in load_const_buffer_desc_fast_path() 70 desc1 = LLVMConstInt(ctx->ac.i32, S_008F04_BASE_ADDRESS_HI(ctx->screen->info.address32_hi), 0); in load_const_buffer_desc_fast_path() 86 LLVMConstInt(ctx->ac.i32, sel->info.constbuf0_num_slots * 16, 0), in load_const_buffer_desc_fast_path() 87 LLVMConstInt(ctx->ac.i32, rsrc3, false)}; in load_const_buffer_desc_fast_path() 89 return ac_build_gather_values(&ctx->ac, desc_elems, 4); in load_const_buffer_desc_fast_path() 97 LLVMValueRef ptr = ac_get_arg(&ctx->ac, ctx->const_and_shader_buffers); in load_ubo() 105 LLVMBuildAdd(ctx->ac.builder, index, LLVMConstInt(ctx->ac.i32, SI_NUM_SHADER_BUFFERS, 0), ""); in load_ubo() [all …]
|
D | si_shader_llvm_tess.c | 36 return ac_get_arg(&ctx->ac, ctx->args.tes_rel_patch_id); in si_get_rel_patch_id() 79 return LLVMConstInt(ctx->ac.i32, patch_dw_stride, 0); in get_tcs_out_patch_stride() 93 return ac_build_imad(&ctx->ac, patch_stride, rel_patch_id, patch0_patch_data_offset); in get_tcs_out_current_patch_data_offset() 104 return LLVMConstInt(ctx->ac.i32, tcs_out_vertices, 0); in si_get_num_tcs_out_vertices() 106 return LLVMBuildAdd(ctx->ac.builder, in si_get_num_tcs_out_vertices() 107 si_unpack_param(ctx, ctx->tcs_offchip_layout, 6, 5), ctx->ac.i32_1, ""); in si_get_num_tcs_out_vertices() 117 return LLVMConstInt(ctx->ac.i32, stride, 0); in si_get_tcs_in_vertex_dw_stride() 122 return LLVMConstInt(ctx->ac.i32, stride, 0); in si_get_tcs_in_vertex_dw_stride() 159 num_patches = LLVMBuildAdd(ctx->ac.builder, num_patches, ctx->ac.i32_1, ""); in get_tcs_tes_buffer_address() 160 total_vertices = LLVMBuildMul(ctx->ac.builder, vertices_per_patch, num_patches, ""); in get_tcs_tes_buffer_address() [all …]
|
D | si_shader_llvm_ps.c | 37 LLVMValueRef desc = ac_get_arg(&ctx->ac, ctx->internal_bindings); in load_sample_position() 38 LLVMValueRef buf_index = LLVMConstInt(ctx->ac.i32, SI_PS_CONST_SAMPLE_POSITIONS, 0); in load_sample_position() 39 LLVMValueRef resource = ac_build_load_to_sgpr(&ctx->ac, desc, buf_index); in load_sample_position() 43 LLVMBuildMul(ctx->ac.builder, sample_id, LLVMConstInt(ctx->ac.i32, 8, 0), ""); in load_sample_position() 45 LLVMBuildAdd(ctx->ac.builder, offset0, LLVMConstInt(ctx->ac.i32, 4, 0), ""); in load_sample_position() 49 LLVMConstReal(ctx->ac.f32, 0), LLVMConstReal(ctx->ac.f32, 0)}; in load_sample_position() 51 return ac_build_gather_values(&ctx->ac, pos, 4); in load_sample_position() 68 ptr = ac_get_arg(&ctx->ac, ctx->internal_bindings); in si_nir_emit_fbfetch() 70 LLVMBuildPointerCast(ctx->ac.builder, ptr, ac_array_in_const32_addr_space(ctx->ac.v8i32), ""); in si_nir_emit_fbfetch() 72 ac_build_load_to_sgpr(&ctx->ac, ptr, LLVMConstInt(ctx->ac.i32, SI_PS_IMAGE_COLORBUF0 / 2, 0)); in si_nir_emit_fbfetch() [all …]
|
D | si_shader_llvm.c | 73 struct ac_llvm_context *ac, struct util_debug_callback *debug, in si_compile_llvm() argument 83 ac_dump_module(ac->module); in si_compile_llvm() 89 char *ir = LLVMPrintModuleToString(ac->module); in si_compile_llvm() 101 LLVMContextSetDiagnosticHandler(ac->context, si_diagnostic_handler, &diag); in si_compile_llvm() 103 if (!ac_compile_module_to_elf(passes, ac->module, (char **)&binary->elf_buffer, in si_compile_llvm() 117 .wave_size = ac->wave_size, in si_compile_llvm() 135 ac_llvm_context_init(&ctx->ac, compiler, sscreen->info.gfx_level, sscreen->info.family, in si_llvm_context_init() 146 ret_type = LLVMStructTypeInContext(ctx->ac.context, return_types, num_return_elems, true); in si_llvm_create_func() 148 ret_type = ctx->ac.voidt; in si_llvm_create_func() 183 ctx->main_fn = ac_build_main(&ctx->args, &ctx->ac, call_conv, name, ret_type, ctx->ac.module); in si_llvm_create_func() [all …]
|
/third_party/libwebsockets/plugins/acme-client/ |
D | protocol_lws_acme_client.c | 122 struct acme_connection *ac; member 144 struct acme_connection *ac = lws_vhost_user(vhost); in callback_chall_http01() local 152 __func__, ac->key_auth); in callback_chall_http01() 167 n = (int)strlen(ac->key_auth); in callback_chall_http01() 192 p += lws_snprintf((char *)p, lws_ptr_diff_size_t(end, p), "%s", ac->key_auth); in callback_chall_http01() 362 s->len = sizeof(s->ac->urls[0]) - 1; in cb_dir() 363 s->dest = s->ac->urls[ctx->path_match - 1]; in cb_dir() 635 if (vhd->ac) { in lws_acme_finished() 636 if (vhd->ac->vhost) in lws_acme_finished() 637 lws_vhost_destroy(vhd->ac->vhost); in lws_acme_finished() [all …]
|
/third_party/ffmpeg/libavresample/ |
D | audio_convert.c | 70 void ff_audio_convert_set_func(AudioConvert *ac, enum AVSampleFormat out_fmt, in ff_audio_convert_set_func() argument 77 switch (ac->func_type) { in ff_audio_convert_set_func() 79 if (av_get_packed_sample_fmt(ac->in_fmt) == in_fmt && in ff_audio_convert_set_func() 80 av_get_packed_sample_fmt(ac->out_fmt) == out_fmt) { in ff_audio_convert_set_func() 81 ac->conv_flat = conv; in ff_audio_convert_set_func() 82 ac->func_descr = descr; in ff_audio_convert_set_func() 83 ac->ptr_align = ptr_align; in ff_audio_convert_set_func() 84 ac->samples_align = samples_align; in ff_audio_convert_set_func() 86 ac->conv_flat_generic = conv; in ff_audio_convert_set_func() 87 ac->func_descr_generic = descr; in ff_audio_convert_set_func() [all …]
|
/third_party/mesa3d/src/amd/llvm/ |
D | ac_nir_to_llvm.c | 39 struct ac_llvm_context ac; member 77 LLVMTypeRef type = LLVMIntTypeInContext(ctx->ac.context, def->bit_size); in get_def_type() 93 LLVMValueRef lds_i8 = ctx->ac.lds; in get_memory_ptr_t() 95 …lds_i8 = LLVMBuildBitCast(ctx->ac.builder, ctx->ac.lds, LLVMPointerType(ctx->ac.i8, AC_ADDR_SPACE_… in get_memory_ptr_t() 97 ptr = LLVMBuildAdd(ctx->ac.builder, ptr, LLVMConstInt(ctx->ac.i32, c_off, 0), ""); in get_memory_ptr_t() 98 ptr = LLVMBuildGEP2(ctx->ac.builder, ctx->ac.i8, lds_i8, &ptr, 1, ""); in get_memory_ptr_t() 101 return LLVMBuildBitCast(ctx->ac.builder, ptr, LLVMPointerType(elem_type, addr_space), ""); in get_memory_ptr_t() 106 return get_memory_ptr_t(ctx, src, LLVMIntTypeInContext(ctx->ac.context, bit_size), c_off); in get_memory_ptr() 130 LLVMValueRef masks[] = {LLVMConstInt(ctx->ac.i32, src.swizzle[0], false), in get_alu_src() 131 LLVMConstInt(ctx->ac.i32, src.swizzle[1], false), in get_alu_src() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | aacdec_template.c | 97 static int output_configure(AACContext *ac, 127 static av_cold int che_configure(AACContext *ac, in che_configure() argument 134 if (!ac->che[type][id]) { in che_configure() 135 if (!(ac->che[type][id] = av_mallocz(sizeof(ChannelElement)))) in che_configure() 137 AAC_RENAME(ff_aac_sbr_ctx_init)(ac, &ac->che[type][id]->sbr, type); in che_configure() 140 …if (*channels >= MAX_CHANNELS - (type == TYPE_CPE || (type == TYPE_SCE && ac->oc[1].m4ac.ps == 1))… in che_configure() 141 av_log(ac->avctx, AV_LOG_ERROR, "Too many channels\n"); in che_configure() 144 ac->output_element[(*channels)++] = &ac->che[type][id]->ch[0]; in che_configure() 146 (type == TYPE_SCE && ac->oc[1].m4ac.ps == 1)) { in che_configure() 147 ac->output_element[(*channels)++] = &ac->che[type][id]->ch[1]; in che_configure() [all …]
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
D | graphics_robust_access_test.cpp | 233 for (auto* ac : AccessChains()) { in TEST_F() local 242 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%uint_0", "%uint_0") in TEST_F() 249 for (auto* ac : AccessChains()) { in TEST_F() local 258 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%uint_3", "%uint_3") in TEST_F() 265 for (auto* ac : AccessChains()) { in TEST_F() local 274 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%uint_4", "%int_3") in TEST_F() 281 for (auto* ac : AccessChains()) { in TEST_F() local 291 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%int_n1", "%int_0") in TEST_F() 300 for (auto* ac : AccessChains()) { in TEST_F() local 314 << ACCheck(ac, "%uint_1 %int_n1", "%uint_1 %int_0") << MainSuffix(); in TEST_F() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | graphics_robust_access_test.cpp | 233 for (auto* ac : AccessChains()) { in TEST_F() local 242 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%uint_0", "%uint_0") in TEST_F() 249 for (auto* ac : AccessChains()) { in TEST_F() local 258 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%uint_3", "%uint_3") in TEST_F() 265 for (auto* ac : AccessChains()) { in TEST_F() local 274 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%uint_4", "%int_3") in TEST_F() 281 for (auto* ac : AccessChains()) { in TEST_F() local 291 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%int_n1", "%int_0") in TEST_F() 300 for (auto* ac : AccessChains()) { in TEST_F() local 314 << ACCheck(ac, "%uint_1 %int_n1", "%uint_1 %int_0") << MainSuffix(); in TEST_F() [all …]
|
/third_party/spirv-tools/test/opt/ |
D | graphics_robust_access_test.cpp | 233 for (auto* ac : AccessChains()) { in TEST_F() local 242 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%uint_0", "%uint_0") in TEST_F() 249 for (auto* ac : AccessChains()) { in TEST_F() local 258 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%uint_3", "%uint_3") in TEST_F() 265 for (auto* ac : AccessChains()) { in TEST_F() local 274 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%uint_4", "%int_3") in TEST_F() 281 for (auto* ac : AccessChains()) { in TEST_F() local 291 %var = OpVariable %var_ty Function)" << ACCheck(ac, "%int_n1", "%int_0") in TEST_F() 300 for (auto* ac : AccessChains()) { in TEST_F() local 314 << ACCheck(ac, "%uint_1 %int_n1", "%uint_1 %int_0") << MainSuffix(); in TEST_F() [all …]
|
/third_party/ffmpeg/libavresample/x86/ |
D | audio_convert_init.c | 146 av_cold void ff_audio_convert_init_x86(AudioConvert *ac) in ff_audio_convert_init_x86() argument 151 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, in ff_audio_convert_init_x86() 153 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP, in ff_audio_convert_init_x86() 157 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLTP, in ff_audio_convert_init_x86() 159 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLTP, in ff_audio_convert_init_x86() 161 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_FLT, in ff_audio_convert_init_x86() 166 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, in ff_audio_convert_init_x86() 168 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S16P, in ff_audio_convert_init_x86() 170 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLTP, in ff_audio_convert_init_x86() 173 ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S16P, in ff_audio_convert_init_x86() [all …]
|
/third_party/ffmpeg/libswresample/x86/ |
D | audio_convert_init.c | 36 av_cold void swri_audio_convert_init_x86(struct AudioConvert *ac, in PROTO4() 42 ac->simd_f= NULL; in PROTO4() 49 ac->simd_f = ff_int16_to_int32_a_ ## cap;\ in PROTO4() 51 ac->simd_f = ff_int32_to_int16_a_ ## cap;\ in PROTO4() 60 ac->simd_f = ff_pack_6ch_float_to_float_a_mmx; in PROTO4() 66 ac->simd_f = ff_pack_6ch_float_to_float_a_sse; in PROTO4() 69 ac->simd_f = ff_unpack_6ch_float_to_float_a_sse; in PROTO4() 74 ac->simd_f = ff_int32_to_float_a_sse2; in PROTO4() 76 ac->simd_f = ff_int16_to_float_a_sse2; in PROTO4() 78 ac->simd_f = ff_float_to_int32_a_sse2; in PROTO4() [all …]
|
/third_party/elfutils/ |
D | ChangeLog | 3 * configure.ac (AC_INIT): Set version to 0.188. 16 * configure.ac: Use AC_PROG_CC with autoconf 2.70, or AC_PROG_CC_C99 42 * configure.ac (OLD_LIBMICROHTTPD): New AM_CONDITIONAL based on 52 * configure.ac (AC_INIT): Set version to 0.187. 62 * configure.ac (AC_CHECK_FUNCS): Add mremap. 66 * configure.ac: Remove -m64 on 32bit target comments for 71 * configure.ac: Use AS_HELP_STRING instead of AC_HELP_STRING. 79 * configure.ac: Move AC_PROG_CXX earlier. Check for both 85 * configure.ac: Add --enable-sanitize-address. 89 * configure.ac (AC_INIT): Set version to 0.186. [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | wmm_ac.c | 76 u8 ac = up_to_ac[up]; in wmm_ac_add_ts() local 82 if (wpa_s->tspecs[ac][idx]) { in wmm_ac_add_ts() 85 ac, dir); in wmm_ac_add_ts() 106 wpa_s->tspecs[ac][idx] = _tspec; in wmm_ac_add_ts() 118 static void wmm_ac_del_ts_idx(struct wpa_supplicant *wpa_s, u8 ac, in wmm_ac_del_ts_idx() argument 121 struct wmm_tspec_element *tspec = wpa_s->tspecs[ac][dir]; in wmm_ac_del_ts_idx() 128 wpa_printf(MSG_DEBUG, "WMM AC: Del TS ac=%d tsid=%d", ac, tsid); in wmm_ac_del_ts_idx() 137 os_free(wpa_s->tspecs[ac][dir]); in wmm_ac_del_ts_idx() 138 wpa_s->tspecs[ac][dir] = NULL; in wmm_ac_del_ts_idx() 244 int ac; in wmm_ac_find_tsid() local [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | wmm_ac.c | 76 u8 ac = up_to_ac[up]; in wmm_ac_add_ts() local 82 if (wpa_s->tspecs[ac][idx]) { in wmm_ac_add_ts() 85 ac, dir); in wmm_ac_add_ts() 106 wpa_s->tspecs[ac][idx] = _tspec; in wmm_ac_add_ts() 118 static void wmm_ac_del_ts_idx(struct wpa_supplicant *wpa_s, u8 ac, in wmm_ac_del_ts_idx() argument 121 struct wmm_tspec_element *tspec = wpa_s->tspecs[ac][dir]; in wmm_ac_del_ts_idx() 128 wpa_printf(MSG_DEBUG, "WMM AC: Del TS ac=%d tsid=%d", ac, tsid); in wmm_ac_del_ts_idx() 137 os_free(wpa_s->tspecs[ac][dir]); in wmm_ac_del_ts_idx() 138 wpa_s->tspecs[ac][dir] = NULL; in wmm_ac_del_ts_idx() 244 int ac; in wmm_ac_find_tsid() local [all …]
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-fulltext-search/mount-origin/ |
D | lws-fts.js | 41 var ac = document.getElementById("acomplete"); 80 ac.style.opacity = "0"; 104 var ac = document.getElementById("acomplete"), 112 ac.style.width = (parseInt(sb.offsetWidth, 10) - 2) + "px"; 113 ac.style.opacity = "1"; 117 ac.style.opacity = "0"; 129 var ac = document.getElementById("acomplete"); 140 if (jj.ac) { 141 lic = jj.ac.length; 145 if (jj.ac[n] && parseInt(jj.ac[n].matches, 10)) [all …]
|