OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:valueb
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/experimental/Intersection/
SkAntiEdge.cpp
386
int
valueb
= edgeb->fFirstY;
local
388
if (valuea ==
valueb
) {
390
valueb
= edgeb->fFirstX;
393
if (valuea ==
valueb
) {
395
valueb
= edgeb->fDX;
398
return valuea -
valueb
;
[
all
...]
/external/chromium_org/third_party/skia/src/core/
SkScan_Path.cpp
383
int
valueb
= edgeb->fFirstY;
local
385
if (valuea ==
valueb
) {
387
valueb
= edgeb->fX;
390
// this overflows if valuea >>>
valueb
or vice-versa
391
// return valuea -
valueb
;
393
return (valuea <
valueb
) ? -1 : (valuea >
valueb
);
399
int
valueb
= b.fFirstY;
local
401
if (valuea ==
valueb
) {
403
valueb
= b.fX
[
all
...]
Completed in 34 milliseconds