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:input_num
(Results
1 - 12
of
12
) sorted by relevance
/third_party/ffmpeg/libavfilter/dnn/
H
A
D
dnn_backend_native_layer_dense.c
34
dense_params->
input_num
= (int32_t)avio_rl32(model_file_context);
in ff_dnn_load_layer_dense()
39
kernel_size = dense_params->
input_num
* dense_params->output_num;
in ff_dnn_load_layer_dense()
44
if (dnn_size > file_size || dense_params->
input_num
<= 0 ||
in ff_dnn_load_layer_dense()
116
av_assert0(channel == dense_params->
input_num
);
in ff_dnn_execute_layer_dense()
126
for (int ch = 0; ch < dense_params->
input_num
; ++ch) {
in ff_dnn_execute_layer_dense()
128
input_pel = input[y * src_linesize + x * dense_params->
input_num
+ ch];
in ff_dnn_execute_layer_dense()
129
output[n_filter] += input_pel * dense_params->kernel[n_filter*dense_params->
input_num
+ ch];
in ff_dnn_execute_layer_dense()
H
A
D
dnn_backend_native_layer_conv2d.c
58
conv_params->
input_num
= (int32_t)avio_rl32(model_file_context);
in ff_dnn_load_layer_conv2d()
64
kernel_size = conv_params->
input_num
* conv_params->output_num *
in ff_dnn_load_layer_conv2d()
70
if (dnn_size > file_size || conv_params->
input_num
<= 0 ||
in ff_dnn_load_layer_conv2d()
125
int src_linesize = width * conv_params->
input_num
;
in dnn_execute_layer_conv2d_thread()
126
int filter_linesize = conv_params->kernel_size * conv_params->
input_num
;
in dnn_execute_layer_conv2d_thread()
133
av_assert0(channel == conv_params->
input_num
);
in dnn_execute_layer_conv2d_thread()
143
for (int ch = 0; ch < conv_params->
input_num
; ++ch) {
in dnn_execute_layer_conv2d_thread()
150
input_pel = input[y_pos * src_linesize + x_pos * conv_params->
input_num
+ ch];
in dnn_execute_layer_conv2d_thread()
155
input[y_pos * src_linesize + x_pos * conv_params->
input_num
+ ch];
in dnn_execute_layer_conv2d_thread()
160
kernel_x * conv_params->
input_num
in dnn_execute_layer_conv2d_thread()
[all...]
H
A
D
dnn_backend_native_layer_conv2d.h
28
int32_t
input_num
, output_num, kernel_size;
member
H
A
D
dnn_backend_native_layer_dense.h
27
int32_t
input_num
, output_num;
member
H
A
D
dnn_backend_tf.c
509
size = params->
input_num
* params->output_num * params->kernel_size * params->kernel_size;
in add_conv_layer()
518
dims[3] = params->
input_num
;
in add_conv_layer()
/third_party/ffmpeg/libavfilter/tests/
H
A
D
dnn-layer-conv2d.c
107
params.
input_num
= 3;
in test_with_same_dilate()
211
params.
input_num
= 3;
in test_with_valid()
H
A
D
dnn-layer-dense.c
98
params.
input_num
= 3;
in test()
/third_party/ffmpeg/tests/dnn/
H
A
D
dnn-layer-conv2d-test.c
107
params.
input_num
= 3;
in test_with_same_dilate()
211
params.
input_num
= 3;
in test_with_valid()
H
A
D
dnn-layer-dense-test.c
98
params.
input_num
= 3;
in test()
/third_party/node/deps/simdutf/
H
A
D
simdutf.cpp
177
/* result might be undefined when
input_num
is zero */
178
simdutf_really_inline int count_ones(uint64_t
input_num
) {
in count_ones()
argument
179
return vaddv_u8(vcnt_u8(vcreate_u8(
input_num
)));
in count_ones()
1378
simdutf_really_inline unsigned __int64 count_ones(uint64_t
input_num
) {
in count_ones()
argument
1380
return __popcnt64(
input_num
);// Visual Studio wants two underscores
in count_ones()
1383
simdutf_really_inline long long int count_ones(uint64_t
input_num
) {
1384
return _popcnt64(
input_num
);
1649
simdutf_really_inline unsigned __int64 count_ones(uint64_t
input_num
) {
in count_ones()
argument
1651
return __popcnt64(
input_num
);// Visual Studio wants two underscores
in count_ones()
1654
simdutf_really_inline long long int count_ones(uint64_t
input_num
) {
2557
count_ones(uint64_t
input_num
)
count_ones()
argument
3443
count_ones(uint64_t
input_num
)
count_ones()
argument
[all...]
/third_party/node/deps/ada/
H
A
D
ada.h
1718
inline int leading_zeroes(uint32_t
input_num
) noexcept {
1721
unsigned long in(
input_num
);
1724
return __builtin_clz(
input_num
);
H
A
D
ada.cpp
10595
ada_really_inline int trailing_zeroes(uint32_t
input_num
) noexcept {
10600
_BitScanForward(&ret,
input_num
);
10603
return __builtin_ctzl(
input_num
);
Completed in 54 milliseconds