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:numShortBlocks
(Results
1 - 5
of
5
) sorted by relevance
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
H
A
D
QrCode.java
337
int
numShortBlocks
= numBlocks - rawCodewords % numBlocks;
in addEccAndInterleave()
346
int datLen = shortBlockDataLen + (i <
numShortBlocks
? 0 : 1);
in addEccAndInterleave()
350
l -=
numShortBlocks
;
in addEccAndInterleave()
/third_party/qrcodegen/cpp/
H
A
D
qrcodegen.cpp
506
int
numShortBlocks
= numBlocks - rawCodewords % numBlocks;
in addEccAndInterleave()
local
513
vector<uint8_t> dat(data.cbegin() + k, data.cbegin() + (k + shortBlockLen - blockEccLen + (i <
numShortBlocks
? 0 : 1)));
in addEccAndInterleave()
516
if (i <
numShortBlocks
)
in addEccAndInterleave()
527
if (i != static_cast<unsigned int>(shortBlockLen - blockEccLen) || j >= static_cast<unsigned int>(
numShortBlocks
))
in addEccAndInterleave()
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/
H
A
D
QrCode.java
437
int
numShortBlocks
= numBlocks - rawCodewords % numBlocks;
in addEccAndInterleave()
444
byte[] dat = Arrays.copyOfRange(data, k, k + shortBlockLen - blockEccLen + (i <
numShortBlocks
? 0 : 1));
in addEccAndInterleave()
457
if (i != shortBlockLen - blockEccLen || j >=
numShortBlocks
) {
in addEccAndInterleave()
/third_party/qrcodegen/c/
H
A
D
qrcodegen.c
301
int
numShortBlocks
= numBlocks - rawCodewords % numBlocks;
in addEccAndInterleave()
local
310
int datLen = shortBlockDataLen + (i <
numShortBlocks
? 0 : 1);
in addEccAndInterleave()
315
k -=
numShortBlocks
;
in addEccAndInterleave()
H
A
D
qrcodegen-test.c
113
size_t
numShortBlocks
= numBlocks - rawCodewords % numBlocks;
in addEccAndInterleaveReference()
local
130
size_t datLen = shortBlockLen - blockEccLen + (i <
numShortBlocks
? 0 : 1);
in addEccAndInterleaveReference()
147
if (i != shortBlockLen - blockEccLen || j >=
numShortBlocks
) {
in addEccAndInterleaveReference()
Completed in 10 milliseconds