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:bufidx
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mesa3d/src/mesa/state_tracker/
H
A
D
st_atom_array.cpp
106
const unsigned
bufidx
= (*num_vbuffers)++;
in setup_arrays()
local
110
vbuffer[
bufidx
].buffer.resource =
in setup_arrays()
112
vbuffer[
bufidx
].is_user_buffer = false;
in setup_arrays()
113
vbuffer[
bufidx
].buffer_offset = binding->Offset +
in setup_arrays()
116
vbuffer[
bufidx
].buffer.user = attrib->Ptr;
in setup_arrays()
117
vbuffer[
bufidx
].is_user_buffer = true;
in setup_arrays()
118
vbuffer[
bufidx
].buffer_offset = 0;
in setup_arrays()
120
vbuffer[
bufidx
].stride = binding->Stride; /* in bytes */
in setup_arrays()
127
binding->InstanceDivisor,
bufidx
,
in setup_arrays()
139
const unsigned
bufidx
in setup_arrays()
local
221
const unsigned
bufidx
= (*num_vbuffers)++;
st_setup_current()
local
286
const unsigned
bufidx
= (*num_vbuffers)++;
st_setup_current_user()
local
[all...]
/third_party/node/benchmark/tls/
H
A
D
throughput-s2c.js
53
let
bufidx
= -1;
60
bufidx
= (
bufidx
+ 1) % bufpool.length;
61
return bufpool[
bufidx
];
/third_party/node/benchmark/net/
H
A
D
net-s2c.js
51
let
bufidx
= -1;
58
bufidx
= (
bufidx
+ 1) % bufpool.length;
59
return bufpool[
bufidx
];
/third_party/curl/lib/
H
A
D
ws.c
839
size_t
bufidx
;
member
858
if(!ctx->
bufidx
) {
in ws_client_collect()
878
DEBUGASSERT(ctx->buflen >= ctx->
bufidx
);
in ws_client_collect()
879
nwritten = CURLMIN(buflen, ctx->buflen - ctx->
bufidx
);
in ws_client_collect()
890
ctx->
bufidx
+= nwritten;
in ws_client_collect()
989
ctx.payload_len, ctx.
bufidx
);
in curl_ws_recv()
Completed in 3 milliseconds