HomeSort by: relevance | last modified time | path
    Searched refs:MDB_DUPSORT (Results 1 - 9 of 9) sorted by relevancy

  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb_dump.c 41 { MDB_DUPSORT, "dupsort" },
127 if (flags & MDB_DUPSORT)
mdb_load.c 62 { MDB_DUPSORT, S("dupsort") },
416 if (flags & MDB_DUPSORT)
439 if (flags & MDB_DUPSORT) {
mtest3.c 60 E(mdb_dbi_open(txn, "id2", MDB_CREATE|MDB_DUPSORT, &dbi));
mtest5.c 60 E(mdb_dbi_open(txn, "id2", MDB_CREATE|MDB_DUPSORT, &dbi));
mtest4.c 58 E(mdb_dbi_open(txn, "id4", MDB_CREATE|MDB_DUPSORT|MDB_DUPFIXED, &dbi));
lmdb.h 256 * The same applies to data sizes in databases with the #MDB_DUPSORT flag.
316 #define MDB_DUPSORT 0x04
320 /** with #MDB_DUPSORT, sorted dup items have fixed size */
322 /** with #MDB_DUPSORT, dups are #MDB_INTEGERKEY-style integers */
324 /** with #MDB_DUPSORT, use reverse string dups */
335 /** Only for #MDB_DUPSORT<br>
371 Only for #MDB_DUPSORT */
372 MDB_GET_BOTH, /**< Position at key/data pair. Only for #MDB_DUPSORT */
373 MDB_GET_BOTH_RANGE, /**< position at key, nearest data. Only for #MDB_DUPSORT */
380 Only for #MDB_DUPSORT */
    [all...]
mdb.c 571 * Data items in an #MDB_DUPSORT database are also limited to
573 * #MDB_DUPSORT data items must fit on a node in a regular page.
604 * This is used for printing a hex dump of a #MDB_DUPSORT value's contents.
842 #define P_SUBP 0x40 /**< for #MDB_DUPSORT sub-pages */
1056 #define VALID_FLAGS (MDB_REVERSEKEY|MDB_DUPSORT|MDB_INTEGERKEY|MDB_DUPFIXED|\
1167 #define DB_DUPDATA 0x20 /**< DB is #MDB_DUPSORT data */
1215 * root to a position in the DB, plus other state. #MDB_DUPSORT
1226 /** Context used for databases with #MDB_DUPSORT, otherwise NULL */
1639 if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT) {
1778 if (txn->mt_dbs[i].md_flags & MDB_DUPSORT) {
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-mdb/
init.c 212 flags |= MDB_DUPSORT;
214 flags ^= MDB_INTEGERKEY|MDB_DUPSORT;
attr.c 126 flags = MDB_DUPSORT|MDB_DUPFIXED|MDB_INTEGERDUP;

Completed in 24 milliseconds