Home
last modified time | relevance | path

Searched refs:bytes (Results 1 – 25 of 103) sorted by relevance

12345

/sqlite-3.40.0/tool/
H A Dspaceanal.tcl608 statline {Page size in bytes} $pageSize
705 Page size in bytes
750 Size of the file in bytes
780 at the right is the bytes of payload divided by the bytes of storage
798 Average unused bytes per entry
841 Unused bytes on index pages
845 total number of bytes on index pages.
847 Unused bytes on primary pages
851 total number of bytes on primary pages.
853 Unused bytes on overflow pages
[all …]
/sqlite-3.40.0/test/
H A Dcorrupt6.test51 # should be 1024 bytes.
58 } 0 ;# Unused bytes per page is 0
153 # Set SerialTypeLen to FF 7F (2 bytes)
165 # Set SerialTypeLen to FF FF 7F (3 bytes)
177 # Set SerialTypeLen to FF FF FF 7F (4 bytes)
189 # Set SerialTypeLen to FF FF FF FF 7F (5 bytes)
201 # Set SerialTypeLen to FF FF FF FF FF 7F (6 bytes, and overflows).
213 # Set SerialTypeLen to FF FF FF FF FF FF 7F (7 bytes, and overflows).
225 # Set SerialTypeLen to FF FF FF FF FF FF FF 7F (8 bytes, and overflows).
237 # Set SerialTypeLen to FF FF FF FF FF FF FF FF 7F (9 bytes, and overflows).
[all …]
H A Dmalloctraceviewer.tcl79 SELECT 'TOTAL' AS ztest, sum(ncall) AS calls, sum(nbyte) AS bytes
82 SELECT ztest AS ztest, sum(ncall) AS calls, sum(nbyte) AS bytes
92 set L [format " % -40s%12s%12s\n" $ztest $calls $bytes]
168 set v [list $calls $bytes]
199 $O(tree) configure -columns {calls bytes}
202 $O(tree) heading bytes -text Bytes -anchor w -command {sort_tree 4}
205 $O(tree) column bytes -width 100
H A DcorruptK.test50 # to 24 bytes (instead of the actual 100).
123 set bytes [list]
135 set bytes [concat $bytes $L]
138 binary format c* $bytes
H A De_blobbytes.test33 # EVIDENCE-OF: R-07796-55423 Returns the size in bytes of the BLOB
37 proc check_blob_size {tn rowid bytes} {
43 }] $bytes]
H A Dbackup4.test12 # The tests in this file verify that if an empty database (zero bytes in
17 # database file to zero bytes is equivalent to resetting the database
64 # Test that if the source is zero bytes, the destination database
H A Dcorrupt3.test50 # should be 1024 bytes. The only record should have a single
52 # the overflow page is on the last 4 bytes of page 2.
59 } 0 ;# Unused bytes per page is 0
H A Dblob.test24 set bytes {}
25 binary scan $blob \c* bytes
27 foreach b $bytes {lappend bytes2 [format %02X [expr $b & 0xFF]]}
H A Dsort4.test52 # bytes of content. The table schema is as follows:
59 # byte string. Column c1 an 8 byte string. Field c2 16 bytes, and so on.
113 # $nRow records of a bit over $nPayload bytes each read from the "t1"
142 # -payload N (bytes of payload to read with each row)
H A Dptrchng.test194 SELECT pointer_change(y, 'text', 'bytes', 'text') FROM t1
199 SELECT pointer_change(y, 'blob', 'bytes', 'blob') FROM t1
207 SELECT pointer_change(y, 'text', 'bytes', 'blob') FROM t1
H A Dpagerfault3.test23 # Create a database with page-size 2048 bytes that uses 2 pages. Populate
24 # it so that if the page-size is changed to 1024 bytes and the db vacuumed,
H A Dwal4.test53 # it should still be zero bytes in size regardless of whether or not
60 error "Db file grew to [file size test.db] bytes"
H A Din2.test51 # The string of zero-length is stored in a b-tree cell with 3 bytes
57 # indices) to contain cells smaller than 4 bytes.
H A Dcapi3.test27 # If $nt is true, append two 0x00 bytes as a nul terminator.
38 # If $str ends in two 0x00 0x00 bytes, knock these off before
479 # bytes
485 set bytes [list]
488 lappend bytes [sqlite3_column_bytes $STMT $i]
490 set bytes
500 set bytes [list]
503 lappend bytes [sqlite3_column_bytes16 $STMT $i]
505 set bytes
H A Dwalprotocol2.test23 # lock, then locks all other bytes before commencing recovery. If it fails
24 # to lock all other bytes (because some other process is holding a read
H A Dtkt-cbd054fa6b.test26 binary scan $blob c* bytes
27 foreach b $bytes {
H A Dcorrupt7.test54 # should be 1024 bytes.
61 } 0 ;# Unused bytes per page is 0
H A Dcapi3e.test35 # If $nt is true, append two 0x00 bytes as a nul terminator.
46 # If $str ends in two 0x00 0x00 bytes, knock these off before
H A Dcapi3c.test29 # If $nt is true, append two 0x00 bytes as a nul terminator.
40 # If $str ends in two 0x00 0x00 bytes, knock these off before
449 # bytes
455 set bytes [list]
458 lappend bytes [sqlite3_column_bytes $STMT $i]
460 set bytes
470 set bytes [list]
473 lappend bytes [sqlite3_column_bytes16 $STMT $i]
475 set bytes
/sqlite-3.40.0/src/
H A Dtest_thread.c568 int bytes; in blocking_prepare_v2_proc() local
582 if( Tcl_GetIntFromObj(interp, objv[3], &bytes) ) return TCL_ERROR; in blocking_prepare_v2_proc()
585 rc = sqlite3_blocking_prepare_v2(db, zSql, bytes, &pStmt, &zTail); in blocking_prepare_v2_proc()
587 rc = sqlite3_prepare_v2(db, zSql, bytes, &pStmt, &zTail); in blocking_prepare_v2_proc()
592 if( bytes>=0 ){ in blocking_prepare_v2_proc()
593 bytes = bytes - (zTail-zSql); in blocking_prepare_v2_proc()
595 Tcl_ObjSetVar2(interp, objv[4], 0, Tcl_NewStringObj(zTail, bytes), 0); in blocking_prepare_v2_proc()
H A Dtest1.c3830 int bytes; in test_bind_text() local
3845 if( bytes<0 ){ in test_bind_text()
3883 int bytes; in test_bind_text16() local
3942 int bytes; in test_bind_blob() local
4512 int bytes = 0; in test_errmsg16() local
4524 for(bytes=0; z[bytes] || z[bytes+1]; bytes+=2){} in test_errmsg16()
4547 int bytes; in test_prepare() local
4567 bytes = bytes - (int)(zTail-zSql); in test_prepare()
4605 int bytes; in test_prepare_v2() local
4644 bytes = bytes - (int)(zTail-zSql); in test_prepare_v2()
[all …]
H A Dtest5.c40 char *bytes; in binarize() local
44 bytes = Tcl_GetStringFromObj(objv[1], &len); in binarize()
45 pRet = Tcl_NewByteArrayObj((u8*)bytes, len+1); in binarize()
/sqlite-3.40.0/ext/wasm/api/
H A Dpre-js.js82 .then(bytes => WebAssembly.instantiate(bytes, imports))
H A Dsqlite3-api-oo1.js1238 const bytes = wasm.jstrToUintArray(val,false);
1239 const pStr = wasm.alloc(bytes.length || 1);
1240 wasm.heap8u().set(bytes.length ? bytes : [0], pStr);
1243 return f(stmt.pointer, ndx, pStr, bytes.length, capi.SQLITE_TRANSIENT);
/sqlite-3.40.0/doc/
H A Dpager-invariants.txt37 first 100 bytes of the database file.
63 of bytes from 24 through 39 inclusive will be changed prior to releasing
66 (10) The pattern of bits in bytes 24 through 39 shall not repeat in less

12345