Home
last modified time | relevance | path

Searched refs:nidSorter (Results 1 – 1 of 1) sorted by relevance

/external/boringssl/src/crypto/obj/
Dobjects.go521 type nidSorter struct { struct
527 func (a nidSorter) obj(i int) object { return a.objs.byNID[a.nids[i]] } argument
528 func (a nidSorter) Len() int { return len(a.nids) } argument
529 func (a nidSorter) Swap(i, j int) { a.nids[i], a.nids[j] = a.nids[j], a.nids[i] } argument
530 func (a nidSorter) Less(i, j int) bool { return a.cmp(a.obj(i), a.obj(j)) } argument
533 sort.Sort(&nidSorter{nids, objs, cmp})