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:Panda
(Results
1 - 16
of
16
) sorted by relevance
/arkcompiler/runtime_core/isa/
H
A
D
asserts.rb
33
assert('Unique opcodes') {
Panda
.instructions.map(&:opcode).uniq? }
36
Panda
.instructions.reject(&:prefix).size +
Panda
.prefixes.size <= 256
40
Panda
.instructions.reject(&:prefix).sorted_by?(&:opcode_idx)
44
Panda
.prefixes.sorted_by?(&:opcode_idx)
48
Panda
.prefixes.map do |prefix|
49
Panda
.instructions.select { |insn| insn.prefix && (insn.prefix.name == prefix.name) }.size <= 256
54
Panda
.instructions.map do |insn|
60
Panda
.instructions.map do |insn|
63
Panda
[all...]
H
A
D
isapi.rb
119
Panda
.prefixes_hash[name] if name
149
Panda
.format_hash[dig(:format)]
436
handlers =
Panda
.instructions.reject(&:prefix) +
438
Panda
.prefixes.select(&:public?) +
440
Panda
.prefixes.reject(&:public?) +
441
Panda
.instructions.select(&:prefix).stable_sort_by { |i|
Panda
.prefixes_hash[i.prefix.name].opcode_idx }
447
(
Panda
.instructions.reject(&:prefix).map(&:opcode_idx).max + 1)..(
Panda
.prefixes.map(&:opcode_idx).min - 1)
451
max_invalid_idx =
Panda
522
module
Panda
global()
module
[all...]
/arkcompiler/runtime_core/static_core/isa/
H
A
D
asserts.rb
33
assert('Unique opcodes') {
Panda
.instructions.map(&:opcode).uniq? }
36
Panda
.instructions.reject(&:prefix).size +
Panda
.prefixes.size <= 256
40
Panda
.instructions.reject(&:prefix).sorted_by?(&:opcode_idx)
44
Panda
.prefixes.sorted_by?(&:opcode_idx)
48
Panda
.prefixes.map do |prefix|
49
Panda
.instructions.select { |insn| insn.prefix && (insn.prefix.name == prefix.name) }.size <= 256
54
Panda
.instructions.map do |insn|
60
Panda
.instructions.map do |insn|
63
Panda
[all...]
H
A
D
isapi.rb
119
Panda
.prefixes_hash[name] if name
153
Panda
.format_hash[dig(:format)] || Quick.format_hash[dig(:format)]
243
Panda
.profiles[dig(:profile)]
389
handlers =
Panda
.instructions.reject(&:prefix) +
391
Panda
.prefixes.select(&:public?) +
393
Panda
.prefixes.reject(&:public?) +
394
Panda
.instructions.select(&:prefix).stable_sort_by { |i|
Panda
.prefixes_hash[i.prefix.name].opcode_idx }
400
(
Panda
.instructions.reject(&:prefix).map(&:opcode_idx).max + 1)..(
Panda
475
module
Panda
global()
module
[all...]
/arkcompiler/runtime_core/assembler/
H
A
D
asm_isapi.rb
62
Panda
::instructions.map do |insn|
69
module
Panda
module in max_number_of_src_regs
/arkcompiler/runtime_core/static_core/assembler/
H
A
D
asm_isapi.rb
62
Panda
::instructions.map do |insn|
69
module
Panda
module in max_number_of_src_regs
/arkcompiler/runtime_core/static_core/libpandafile/
H
A
D
pandafile_isapi.rb
77
Panda
.instructions.uniq { |i| i.format.pretty }.sort_by { |insn| insn.format.pretty }
81
(
Panda
.instructions + Quick::instructions).uniq { |i| i.format.pretty }.sort_by { |insn| insn.format.pretty }
/arkcompiler/ets_runtime/test/moduletest/ldmodulensbyic/
H
A
D
animals.js
15
export let
Panda
= {
/arkcompiler/runtime_core/static_core/runtime/templates/
H
A
D
bridge_helpers_static.rb
28
Panda
::instructions.reject(&:prefix).select do |insn|
H
A
D
bridge_helpers_dynamic.rb
37
Panda
.instructions.select { |insn| insn.properties.include?('call') && insn.properties.include?('dynamic') }
/arkcompiler/runtime_core/static_core/tests/irtoc-interpreter-tests/irtoc-tag/
H
A
D
generate-tag.rb
60
Panda
.instructions.each do |instr|
/arkcompiler/runtime_core/libpandafile/
H
A
D
pandafile_isapi.rb
80
Panda
.instructions.uniq { |i| i.format.pretty }.sort_by { |insn| insn.format.pretty }
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/
H
A
D
target.cpp
140
[[maybe_unused]] auto mode = CallConvMode::
Panda
(isPandaAbi) | CallConvMode::Osr(isOsr) |
in Create()
/arkcompiler/runtime_core/bytecode_optimizer/
H
A
D
bytecode_optimizer_isapi.rb
49
Panda
.instructions.each { |insn| @instruction_hash[insn.mnemonic] = insn }
308
# (because
Panda
::instructions is initialized only in templates)
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H
A
D
callconv.h
136
//
Panda
ABI convention (native - otherwise)
137
DECLARE_CALLCONV_MODE(
Panda
);
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
H
A
D
bytecode_optimizer_isapi.rb
49
Panda
.instructions.each { |insn| @instruction_hash[insn.mnemonic] = insn }
384
# (because
Panda
::instructions is initialized only in templates)
Completed in 5 milliseconds