OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:natural_order
(Results
1 - 25
of
33
) sorted by null
1
2
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
EmptyImmutableSortedMap.java
34
new EmptyImmutableSortedMap<Object, Object>(
NATURAL_ORDER
);
37
if (comparator ==
NATURAL_ORDER
) {
ImmutableSortedMap.java
41
static final Comparator
NATURAL_ORDER
= Ordering.natural();
79
return EmptyImmutableSortedMap.forComparator(
NATURAL_ORDER
);
127
(map.comparator() == null) ?
NATURAL_ORDER
: map.comparator();
141
? comparator ==
NATURAL_ORDER
ImmutableSortedSet.java
54
private static final Comparator
NATURAL_ORDER
= Ordering.natural();
58
new EmptyImmutableSortedSet<Object>(
NATURAL_ORDER
);
68
if (
NATURAL_ORDER
.equals(comparator)) {
174
comparator =
NATURAL_ORDER
;
/external/opencv3/3rdparty/libjpeg/
jdinput.c
242
/* Derive block_size,
natural_order
, and lim_Se */
246
cinfo->
natural_order
= jpeg_natural_order;
252
cinfo->
natural_order
= jpeg_natural_order; /* not needed */
257
cinfo->
natural_order
= jpeg_natural_order2;
262
cinfo->
natural_order
= jpeg_natural_order3;
267
cinfo->
natural_order
= jpeg_natural_order4;
272
cinfo->
natural_order
= jpeg_natural_order5;
277
cinfo->
natural_order
= jpeg_natural_order6;
282
cinfo->
natural_order
= jpeg_natural_order7;
287
cinfo->
natural_order
= jpeg_natural_order
[
all
...]
jdarith.c
328
const int *
natural_order
;
local
339
natural_order
= cinfo->
natural_order
;
389
(*block)[
natural_order
[k]] = (JCOEF) (v << cinfo->Al);
442
const int *
natural_order
;
local
453
natural_order
= cinfo->
natural_order
;
465
if ((*block)[
natural_order
[kex]]) break;
474
thiscoef = *block +
natural_order
[++k];
517
const int *
natural_order
;
local
[
all
...]
jcarith.c
460
const int *
natural_order
;
local
473
natural_order
= cinfo->
natural_order
;
488
if ((v = (*block)[
natural_order
[ke]]) >= 0) {
501
if ((v = (*block)[
natural_order
[++k]]) >= 0) {
600
const int *
natural_order
;
local
613
natural_order
= cinfo->
natural_order
;
628
if ((v = (*block)[
natural_order
[ke]]) >= 0) {
638
if ((v = (*block)[
natural_order
[kex]]) >= 0)
700
const int *
natural_order
;
local
[
all
...]
jcmaster.c
237
/* Derive
natural_order
from block_size */
239
case 2: cinfo->
natural_order
= jpeg_natural_order2; break;
240
case 3: cinfo->
natural_order
= jpeg_natural_order3; break;
241
case 4: cinfo->
natural_order
= jpeg_natural_order4; break;
242
case 5: cinfo->
natural_order
= jpeg_natural_order5; break;
243
case 6: cinfo->
natural_order
= jpeg_natural_order6; break;
244
case 7: cinfo->
natural_order
= jpeg_natural_order7; break;
245
default: cinfo->
natural_order
= jpeg_natural_order; break;
jchuff.c
635
const int *
natural_order
;
local
648
natural_order
= cinfo->
natural_order
;
658
if ((temp = (*block)[
natural_order
[k]]) == 0) {
795
const int *
natural_order
;
local
809
natural_order
= cinfo->
natural_order
;
819
temp = (*block)[
natural_order
[k]];
875
temp = ((*block)[
natural_order
[k]] < 0) ? 0 : 1;
923
const int *
natural_order
= state->cinfo->natural_order
local
1129
const int *
natural_order
= cinfo->
natural_order
;
local
[
all
...]
jdhuff.c
772
const int *
natural_order
;
local
791
natural_order
= cinfo->
natural_order
;
817
(*block)[
natural_order
[k]] = (JCOEF) (s << Al);
909
const int *
natural_order
;
local
931
natural_order
= cinfo->
natural_order
;
1063
const int *
natural_order
;
local
[
all
...]
jdmarker.c
534
const int *
natural_order
;
local
576
case (2*2):
natural_order
= jpeg_natural_order2; break;
577
case (3*3):
natural_order
= jpeg_natural_order3; break;
578
case (4*4):
natural_order
= jpeg_natural_order4; break;
579
case (5*5):
natural_order
= jpeg_natural_order5; break;
580
case (6*6):
natural_order
= jpeg_natural_order6; break;
581
case (7*7):
natural_order
= jpeg_natural_order7; break;
582
default:
natural_order
= jpeg_natural_order; break;
591
quant_ptr->quantval[
natural_order
[i]] = (UINT16) tmp;
[
all
...]
jcapimin.c
79
cinfo->
natural_order
= jpeg_natural_order;
jcmarker.c
159
if (qtbl->quantval[cinfo->
natural_order
[i]] > 255)
173
unsigned int qval = qtbl->quantval[cinfo->
natural_order
[i]];
jpeglib.h
430
const int *
natural_order
; /* natural-order position array */
member in struct:jpeg_compress_struct
659
const int *
natural_order
; /* natural-order position array for entropy decode */
member in struct:jpeg_decompress_struct
[
all
...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeMap.java
41
private static final Comparator<Object>
NATURAL_ORDER
= new Comparator<Object>() {
90
comparator = (Comparator<? super K>)
NATURAL_ORDER
;
SafeTreeSet.java
36
private static final Comparator<Object>
NATURAL_ORDER
= new Comparator<Object>() {
89
comparator = (Comparator<? super E>)
NATURAL_ORDER
;
Helpers.java
311
private static final Comparator<Comparable>
NATURAL_ORDER
= new Comparator<Comparable>() {
320
sort(insertionOrder, Helpers.<K, V>entryComparator(
NATURAL_ORDER
));
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
Helpers.java
309
private static final Comparator<Comparable>
NATURAL_ORDER
= new Comparator<Comparable>() {
318
sort(insertionOrder, Helpers.<K, V>entryComparator(
NATURAL_ORDER
));
/external/guava/guava/src/com/google/common/collect/
ImmutableSortedMap.java
65
private static final Comparator<Comparable>
NATURAL_ORDER
= Ordering.natural();
68
new EmptyImmutableSortedMap<Comparable, Object>(
NATURAL_ORDER
);
243
comparator = (Comparator<? super K>)
NATURAL_ORDER
;
255
? comparator ==
NATURAL_ORDER
ImmutableSortedMultiset.java
86
private static final Comparator<Comparable>
NATURAL_ORDER
= Ordering.natural();
89
new EmptyImmutableSortedMultiset<Comparable>(
NATURAL_ORDER
);
312
if (
NATURAL_ORDER
.equals(comparator)) {
ImmutableSortedSet.java
97
private static final Comparator<Comparable>
NATURAL_ORDER
=
101
new EmptyImmutableSortedSet<Comparable>(
NATURAL_ORDER
);
110
if (
NATURAL_ORDER
.equals(comparator)) {
/external/libjpeg-turbo/
jcapimin.c
84
cinfo->
natural_order
= jpeg_natural_order;
jdinput.c
80
cinfo->
natural_order
= jpeg_natural_order;
jpeglib.h
448
const int *
natural_order
; /* natural-order position array */
member in struct:jpeg_compress_struct
682
const int *
natural_order
; /* natural-order position array for entropy decode */
member in struct:jpeg_decompress_struct
[
all
...]
/prebuilts/sdk/tools/
jack-jacoco-reporter.jar
/prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.3/
gson-2.3.jar
Completed in 1581 milliseconds
1
2