Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:is_16bit
(Results
1 - 15
of
15
) sorted by relevance
/third_party/elfutils/libcpu/
H
A
D
i386_data.h
505
int
is_16bit
= (*d->prefixes & has_data16) != 0;
in FCT_ax()
local
511
if (*bufcntp + 4 -
is_16bit
> bufsize)
in FCT_ax()
512
return *bufcntp + 4 -
is_16bit
- bufsize;
in FCT_ax()
515
if (!
is_16bit
)
in FCT_ax()
943
int
is_16bit
= (prefixes & has_data16) != 0;
in FCT_mod$r_m()
local
947
if (*bufcntp + 5 -
is_16bit
> d->bufsize)
in FCT_mod$r_m()
948
return *bufcntp + 5 -
is_16bit
- d->bufsize;
in FCT_mod$r_m()
953
if ((prefixes & has_rex_b) != 0 && !
is_16bit
)
in FCT_mod$r_m()
962
cp = stpcpy (&bufp[*bufcntp], dregs[modrm & 7] +
is_16bit
);
in FCT_mod$r_m()
1055
int
is_16bit
in FCT_mod$r_m$w()
local
1167
int
is_16bit
= (*d->prefixes & has_data16) != 0;
FCT_reg()
local
[all...]
/third_party/ffmpeg/libavfilter/
H
A
D
vf_selectivecolor.c
89
int
is_16bit
;
member
173
else if (!s->
is_16bit
&& (pr->mask & 1<<RANGE_WHITES)) pr->get_scale = get_whites_scale8;
in register_range()
174
else if (!s->
is_16bit
&& (pr->mask & 1<<RANGE_NEUTRALS)) pr->get_scale = get_neutrals_scale8;
in register_range()
175
else if (!s->
is_16bit
&& (pr->mask & 1<<RANGE_BLACKS)) pr->get_scale = get_blacks_scale8;
in register_range()
176
else if ( s->
is_16bit
&& (pr->mask & 1<<RANGE_WHITES)) pr->get_scale = get_whites_scale16;
in register_range()
177
else if ( s->
is_16bit
&& (pr->mask & 1<<RANGE_NEUTRALS)) pr->get_scale = get_neutrals_scale16;
in register_range()
178
else if ( s->
is_16bit
&& (pr->mask & 1<<RANGE_BLACKS)) pr->get_scale = get_blacks_scale16;
in register_range()
245
s->
is_16bit
= desc->comp[0].depth > 8;
in config_input()
246
s->step = av_get_padded_bits_per_pixel(desc) >> (3 + s->
is_16bit
);
in config_input()
460
ff_filter_execute(ctx, funcs[s->
is_16bit
][direc
in filter_frame()
[all...]
H
A
D
vf_lut.c
72
int
is_16bit
;
member
226
s->
is_16bit
= desc->comp[0].depth > 8;
in config_props()
291
if (s->
is_16bit
) {
in config_props()
539
if (s->is_rgb && s->
is_16bit
&& !s->is_planar) {
in filter_frame()
549
} else if (s->
is_16bit
) {
in filter_frame()
H
A
D
vf_curves.c
73
int
is_16bit
;
member
532
if (curves->
is_16bit
) {
in filter_slice_packed()
580
if (curves->
is_16bit
) {
in filter_slice_planar()
640
curves->
is_16bit
= desc->comp[0].depth > 8;
in config_input()
643
curves->step = av_get_padded_bits_per_pixel(desc) >> (3 + curves->
is_16bit
);
in config_input()
/third_party/mesa3d/src/compiler/glsl/
H
A
D
lower_precision.cpp
1110
assert(lhs->type->
is_16bit
() || lhs->type->is_32bit());
in convert_split_assignment()
1111
assert(rhs->type->
is_16bit
() || rhs->type->is_32bit());
in convert_split_assignment()
1112
assert(lhs->type->
is_16bit
() != rhs->type->
is_16bit
());
in convert_split_assignment()
1137
var->type->without_array()->
is_16bit
() !=
in visit_enter()
1138
rhs_var->type->without_array()->
is_16bit
())) &&
in visit_enter()
1141
var->type->without_array()->
is_16bit
() &&
in visit_enter()
1188
expr->operands[0]->type->
is_16bit
()) {
in visit_enter()
1254
expr->type->without_array()->
is_16bit
() &&
in handle_rvalue()
/third_party/mesa3d/src/amd/llvm/
H
A
D
ac_shader_abi.h
43
bool
is_16bit
[AC_LLVM_MAX_OUTPUTS * 4];
member
H
A
D
ac_nir_to_llvm.c
2405
if (!ctx->abi->
is_16bit
[base * 4 + chan] &&
in visit_store_output()
5392
bool
is_16bit
= glsl_type_is_16bit(glsl_without_array(variable->type));
in ac_handle_shader_output_decl()
local
5393
LLVMTypeRef type =
is_16bit
? ctx->f16 : ctx->f32;
in ac_handle_shader_output_decl()
5398
abi->
is_16bit
[idx] =
is_16bit
;
in ac_handle_shader_output_decl()
/third_party/mesa3d/src/amd/vulkan/
H
A
D
radv_nir_to_llvm.c
596
bool
is_16bit
= ac_get_type_size(LLVMTypeOf(values[0])) == 2;
in si_llvm_init_export_args()
640
if (
is_16bit
) {
in si_llvm_init_export_args()
659
if (
is_16bit
) {
in si_llvm_init_export_args()
669
if (
is_16bit
) {
in si_llvm_init_export_args()
683
if (enable_mrt_output_nan_fixup && !
is_16bit
) {
in si_llvm_init_export_args()
720
if (
is_16bit
) {
in si_llvm_init_export_args()
H
A
D
radv_pipeline.c
4300
bool
is_16bit
= intrin->src[0].ssa->bit_size == 16;
in radv_lower_fs_output()
local
4318
if (enable_mrt_output_nan_fixup && !nir->info.internal && !
is_16bit
) {
in radv_lower_fs_output()
4343
} else if (
is_16bit
) {
in radv_lower_fs_output()
4358
} else if (
is_16bit
) {
in radv_lower_fs_output()
4367
if (
is_16bit
) {
in radv_lower_fs_output()
4377
bool input_16_bit = col_format == V_028714_SPI_SHADER_FP16_ABGR &&
is_16bit
;
in radv_lower_fs_output()
4398
if (
is_16bit
) {
in radv_lower_fs_output()
/third_party/mesa3d/src/compiler/
H
A
D
glsl_types.h
132
* happens when calling this method through is_64bit and
is_16bit
in glsl_base_type_bit_size()
921
bool
is_16bit
() const
in is_16bit()
function
H
A
D
nir_types.cpp
268
return type->
is_16bit
();
in glsl_type_is_16bit()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H
A
D
si_shader_llvm_ps.c
469
LLVMTypeRef type = ctx->abi.
is_16bit
[4 * i] ? ctx->ac.f16 : ctx->ac.f32;
in si_llvm_ps_build_end()
487
type = ctx->abi.
is_16bit
[4 * i + j] ? ctx->ac.f16 : ctx->ac.f32;
in si_llvm_ps_build_end()
H
A
D
si_shader_llvm.c
1068
ctx->abi.
is_16bit
[i * 4 + j] = type == ctx->ac.f16;
in si_llvm_translate_nir()
/third_party/ffmpeg/libavutil/
H
A
D
pixdesc.c
69
int
is_16bit
= shift + depth <=16;
in av_read_image_line2()
local
77
else if(
is_16bit
) val = flags & AV_PIX_FMT_FLAG_BE ? AV_RB16(p) : AV_RL16(p);
in av_read_image_line2()
/third_party/mesa3d/src/amd/compiler/
H
A
D
aco_instruction_selection.cpp
593
get_ssa_temp_tex(struct isel_context* ctx, nir_ssa_def* def, bool
is_16bit
)
in get_ssa_temp_tex()
argument
595
RegClass rc = RegClass::get(RegType::vgpr, (
is_16bit
? 2 : 4) * def->num_components);
in get_ssa_temp_tex()
Completed in 51 milliseconds