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:offsetDiff
(Results
1 - 6
of
6
) sorted by relevance
/third_party/skia/src/gpu/vk/
H
A
D
GrVkUniformHandler.cpp
173
uint32_t
offsetDiff
= *currentOffset & alignmentMask;
in get_aligned_offset()
local
174
if (
offsetDiff
!= 0) {
in get_aligned_offset()
175
offsetDiff
= alignmentMask -
offsetDiff
+ 1;
in get_aligned_offset()
177
int32_t uniformOffset = *currentOffset +
offsetDiff
;
in get_aligned_offset()
H
A
D
GrVkMemory.cpp
272
VkDeviceSize
offsetDiff
= offset & (alignment -1);
local
273
offset = offset -
offsetDiff
;
/third_party/skia/src/gpu/
H
A
D
GrSPIRVUniformHandler.cpp
170
uint32_t
offsetDiff
= *currentOffset & alignmentMask;
in get_ubo_offset()
local
171
if (
offsetDiff
!= 0) {
in get_ubo_offset()
172
offsetDiff
= alignmentMask -
offsetDiff
+ 1;
in get_ubo_offset()
174
uint32_t uniformOffset = *currentOffset +
offsetDiff
;
in get_ubo_offset()
/third_party/skia/experimental/graphite/src/
H
A
D
UniformManager.cpp
447
uint32_t
offsetDiff
= *currentOffset & alignmentMask;
in get_ubo_aligned_offset()
local
448
if (
offsetDiff
!= 0) {
in get_ubo_aligned_offset()
449
offsetDiff
= alignmentMask -
offsetDiff
+ 1;
in get_ubo_aligned_offset()
451
uint32_t uniformOffset = *currentOffset +
offsetDiff
;
in get_ubo_aligned_offset()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H
A
D
ProgramExecutableVk.cpp
800
VkDeviceSize
offsetDiff
= offset - alignedOffset;
in WriteBufferDescriptorSetBinding()
local
803
size +=
offsetDiff
;
in WriteBufferDescriptorSetBinding()
H
A
D
ContextVk.cpp
4957
uint32_t
offsetDiff
= 0;
in writeAtomicCounterBufferDriverUniformOffsets()
local
4968
offsetDiff
= static_cast<uint32_t>((offset - alignedOffset) / sizeof(uint32_t));
in writeAtomicCounterBufferDriverUniformOffsets()
4970
// We expect
offsetDiff
to fit in an 8-bit value. The maximum difference is
in writeAtomicCounterBufferDriverUniformOffsets()
4973
ASSERT(
offsetDiff
< (1 << 8));
in writeAtomicCounterBufferDriverUniformOffsets()
4979
offsetsOut[bufferIndex / 4] |= static_cast<uint8_t>(
offsetDiff
) << ((bufferIndex % 4) * 8);
in writeAtomicCounterBufferDriverUniformOffsets()
Completed in 15 milliseconds