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:current_ppm
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-6.6/drivers/ptp/
H
A
D
ptp_idt82p33.c
576
static s32 idt82p33_ddco_scaled_ppm(long
current_ppm
, s32 ddco_ppb)
in idt82p33_ddco_scaled_ppm()
argument
581
current_ppm
+= scaled_ppm;
in idt82p33_ddco_scaled_ppm()
583
if (
current_ppm
> max_scaled_ppm)
in idt82p33_ddco_scaled_ppm()
584
current_ppm
= max_scaled_ppm;
in idt82p33_ddco_scaled_ppm()
585
else if (
current_ppm
< -max_scaled_ppm)
in idt82p33_ddco_scaled_ppm()
586
current_ppm
= -max_scaled_ppm;
in idt82p33_ddco_scaled_ppm()
588
return (s32)
current_ppm
;
in idt82p33_ddco_scaled_ppm()
606
s32
current_ppm
= channel->current_freq;
in idt82p33_start_ddco()
local
626
idt82p33_ddco_scaled_ppm(
current_ppm
, ppb));
in idt82p33_start_ddco()
H
A
D
ptp_clockmatrix.c
1547
static s32 phase_pull_in_scaled_ppm(s32
current_ppm
, s32 phase_pull_in_ppb)
in phase_pull_in_scaled_ppm()
argument
1555
current_ppm
+= scaled_ppm;
in phase_pull_in_scaled_ppm()
1557
if (
current_ppm
> max_scaled_ppm)
in phase_pull_in_scaled_ppm()
1558
current_ppm
= max_scaled_ppm;
in phase_pull_in_scaled_ppm()
1559
else if (
current_ppm
< -max_scaled_ppm)
in phase_pull_in_scaled_ppm()
1560
current_ppm
= -max_scaled_ppm;
in phase_pull_in_scaled_ppm()
1562
return
current_ppm
;
in phase_pull_in_scaled_ppm()
1569
s32
current_ppm
= channel->current_freq_scaled_ppm;
in do_phase_pull_in_sw()
local
1592
delta_ppm = phase_pull_in_scaled_ppm(
current_ppm
, ppb);
in do_phase_pull_in_sw()
Completed in 5 milliseconds