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:temp_map
(Results
1 - 5
of
5
) sorted by relevance
/kernel/linux/linux-5.10/drivers/input/keyboard/
H
A
D
amikbd.c
134
/* We can spare 512 bytes on stack for
temp_map
in init path. */
in amikbd_init_console_keymaps()
135
unsigned short
temp_map
[NR_KEYS];
in amikbd_init_console_keymaps()
local
141
memset(
temp_map
, 0, sizeof(
temp_map
));
in amikbd_init_console_keymaps()
145
temp_map
[j] = key_maps[i][amikbd_keycode[j]];
in amikbd_init_console_keymaps()
148
if (!
temp_map
[j])
in amikbd_init_console_keymaps()
149
temp_map
[j] = 0xf200;
in amikbd_init_console_keymaps()
151
memcpy(key_maps[i],
temp_map
, sizeof(
temp_map
));
in amikbd_init_console_keymaps()
/kernel/linux/linux-6.6/drivers/input/keyboard/
H
A
D
amikbd.c
131
/* We can spare 512 bytes on stack for
temp_map
in init path. */
in amikbd_init_console_keymaps()
132
unsigned short
temp_map
[NR_KEYS];
in amikbd_init_console_keymaps()
local
138
memset(
temp_map
, 0, sizeof(
temp_map
));
in amikbd_init_console_keymaps()
142
temp_map
[j] = key_maps[i][amikbd_keycode[j]];
in amikbd_init_console_keymaps()
145
if (!
temp_map
[j])
in amikbd_init_console_keymaps()
146
temp_map
[j] = 0xf200;
in amikbd_init_console_keymaps()
148
memcpy(key_maps[i],
temp_map
, sizeof(
temp_map
));
in amikbd_init_console_keymaps()
/kernel/linux/linux-5.10/drivers/iio/adc/
H
A
D
cpcap-adc.c
304
static const int
temp_map
[CPCAP_MAX_TEMP_LVL][2] = {
variable
716
if (value <=
temp_map
[CPCAP_MAX_TEMP_LVL - 1][0])
in cpcap_adc_table_to_millicelcius()
717
return
temp_map
[CPCAP_MAX_TEMP_LVL - 1][1];
in cpcap_adc_table_to_millicelcius()
719
if (value >=
temp_map
[0][0])
in cpcap_adc_table_to_millicelcius()
720
return
temp_map
[0][1];
in cpcap_adc_table_to_millicelcius()
723
if ((value <=
temp_map
[i][0]) &&
in cpcap_adc_table_to_millicelcius()
724
(value >=
temp_map
[i + 1][0])) {
in cpcap_adc_table_to_millicelcius()
725
if (value ==
temp_map
[i][0]) {
in cpcap_adc_table_to_millicelcius()
726
result =
temp_map
[i][1];
in cpcap_adc_table_to_millicelcius()
727
} else if (value ==
temp_map
[
in cpcap_adc_table_to_millicelcius()
[all...]
/kernel/linux/linux-6.6/drivers/iio/adc/
H
A
D
cpcap-adc.c
304
static const int
temp_map
[CPCAP_MAX_TEMP_LVL][2] = {
variable
717
if (value <=
temp_map
[CPCAP_MAX_TEMP_LVL - 1][0])
in cpcap_adc_table_to_millicelcius()
718
return
temp_map
[CPCAP_MAX_TEMP_LVL - 1][1];
in cpcap_adc_table_to_millicelcius()
720
if (value >=
temp_map
[0][0])
in cpcap_adc_table_to_millicelcius()
721
return
temp_map
[0][1];
in cpcap_adc_table_to_millicelcius()
724
if ((value <=
temp_map
[i][0]) &&
in cpcap_adc_table_to_millicelcius()
725
(value >=
temp_map
[i + 1][0])) {
in cpcap_adc_table_to_millicelcius()
726
if (value ==
temp_map
[i][0]) {
in cpcap_adc_table_to_millicelcius()
727
result =
temp_map
[i][1];
in cpcap_adc_table_to_millicelcius()
728
} else if (value ==
temp_map
[
in cpcap_adc_table_to_millicelcius()
[all...]
/kernel/linux/linux-6.6/drivers/thermal/qcom/
H
A
D
qcom-spmi-temp-alarm.c
84
const long (*
temp_map
)[THRESH_COUNT][STAGE_COUNT];
member
118
if (!chip->
temp_map
|| chip->thresh >= THRESH_COUNT || stage == 0 ||
in qpnp_tm_decode_temp()
122
return (*chip->
temp_map
)[chip->thresh][stage - 1];
in qpnp_tm_decode_temp()
222
long stage2_threshold_min = (*chip->
temp_map
)[THRESH_MIN][1];
in qpnp_tm_update_critical_trip_temp()
223
long stage2_threshold_max = (*chip->
temp_map
)[THRESH_MAX][1];
in qpnp_tm_update_critical_trip_temp()
436
chip->
temp_map
= &temp_map_gen2_v1;
in qpnp_tm_probe()
438
chip->
temp_map
= &temp_map_gen1;
in qpnp_tm_probe()
Completed in 4 milliseconds