HomeSort by relevance Sort by last modified time
    Searched refs:recno (Results 1 - 6 of 6) sorted by null

  /external/pcre/dist2/src/
pcre2_study.c 135 int d, min, recno; local
195 recno = (int)GET2(cc, 1+LINK_SIZE);
196 if (dupcapused || recno != prev_cap_recno)
198 prev_cap_recno = recno;
475 recno = GET2(slot, 0);
477 if (recno <= backref_cache[0] && backref_cache[recno] >= 0)
478 dd = backref_cache[recno];
481 ce = cs = (PCRE2_UCHAR *)PRIV(find_bracket)(startcode, utf, recno);
509 backref_cache[recno] = dd
    [all...]
pcre2_dfa_match.c 2828 uint32_t recno = (callpat == mb->start_code)? 0 : local
    [all...]
  /external/python/cpython2/Lib/bsddb/test/
test_recno.py 1 """TestCases for exercising a Recno DB.
42 recno = d.append(x * 60)
43 self.assertIsInstance(recno, int)
44 self.assertGreaterEqual(recno, 1)
46 print recno,
54 for recno in range(1, len(d)+1):
55 data = d[recno]
60 self.assertEqual(data, d.get(recno))
168 # put a record beyond the consecutive end of the recno's
205 A Recno file that is given a "backing source file" is essentially
    [all...]
  /external/python/cpython2/Modules/
bsddbmodule.c 4 Btree and Recno additions plus sequence methods: David Ely
5 Hacked by Gustavo Niemeyer <niemeyer@conectiva.com> fixing recno
277 recno_t recno; local
280 if (!PyArg_Parse(key, "i", &recno)) {
285 krec.data = &recno;
286 krec.size = sizeof(recno);
328 recno_t recno; local
331 if (!PyArg_Parse(key, "i", &recno)) {
336 krec.data = &recno;
337 krec.size = sizeof(recno);
471 recno_t recno; local
511 recno_t recno; local
    [all...]
_bsddb.c 406 /* Recno and Queue DBs can have integer keys. This function figures out
413 db_recno_t recno; local
424 "None keys not allowed for Recno and Queue DB's");
439 "String keys not allowed for Recno and Queue DB's");
441 "Bytes keys not allowed for Recno and Queue DB's");
477 "Integer keys only allowed for Recno and Queue DB's");
481 /* Make a key out of the requested recno, use allocated space so DB
483 recno = NUMBER_AsLong(keyobj);
490 memcpy(key->data, &recno, sizeof(db_recno_t));
825 /* if Recno or Queue, return the key as an Int *
1423 db_recno_t recno; local
4434 db_recno_t recno; local
4746 db_recno_t recno; local
    [all...]
  /external/python/cpython2/Lib/bsddb/
dbshelve.py 358 def set_recno(self, recno, flags=0):
359 rec = self.dbc.set_recno(recno, flags)

Completed in 290 milliseconds