HomeSort by relevance Sort by last modified time
    Searched defs:minLocal (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/sqlite/src/tool/
showdb.c 255 int minLocal;
261 minLocal = (pagesize-12)*32/255-23;
264 minLocal = (pagesize-12)*32/255-23;
267 surplus = minLocal + (nPayload-minLocal)%(pagesize-4);
271 nLocal = minLocal;
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector3f.java 797 * <code>minLocal</code> computes the minimum value for each
802 public void minLocal(Vector3f other){
    [all...]
Vector4f.java 745 * <code>minLocal</code> computes the minimum value for each
750 public void minLocal(Vector4f other){
  /external/chromium_org/third_party/sqlite/src/src/
btreeInt.h 281 u16 minLocal; /* Copy of BtShared.minLocal or BtShared.minLeaf */
420 u16 minLocal; /* Minimum local payload in non-LEAFDATA tables */
recover.c 867 * minLocal to match naming in btree.c.
870 const unsigned minLocal = ((nPageSize-12)*32/255)-23; /* m */
879 /* Calculate the remainder after accounting for minLocal on the leaf
884 nLocalRecordBytes = minLocal+((nRecordBytes-minLocal)%(nPageSize-4));
886 nLocalRecordBytes = minLocal;
    [all...]
btree.c 929 ** in between minLocal and maxLocal.
934 int minLocal; /* Minimum amount of payload held locally */
938 minLocal = pPage->minLocal;
940 surplus = minLocal + (nPayload - minLocal)%(pPage->pBt->usableSize - 4);
946 pInfo->nLocal = (u16)minLocal;
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 3109 milliseconds