Home
last modified time | relevance | path

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

/netbsd/external/public-domain/sqlite/dist/
H A Dshell.c12046 unsigned char aHdr[100]; in shell_dbinfo_command() local
12055 memcpy(aHdr, sqlite3_column_blob(pStmt,0), 100); in shell_dbinfo_command()
12062 i = get2byteInt(aHdr+16); in shell_dbinfo_command()
12065 utf8_printf(p->out, "%-20s %d\n", "write format:", aHdr[18]); in shell_dbinfo_command()
12066 utf8_printf(p->out, "%-20s %d\n", "read format:", aHdr[19]); in shell_dbinfo_command()
12067 utf8_printf(p->out, "%-20s %d\n", "reserved bytes:", aHdr[20]); in shell_dbinfo_command()
12070 unsigned int val = get4byteInt(aHdr + ofst); in shell_dbinfo_command()
H A Dsqlite3.c58831 volatile WalIndexHdr *aHdr = walIndexHdr(pWal);
60198 aHdr = walIndexHdr(pWal);
60199 memcpy(&h1, (void *)&aHdr[0], sizeof(h1));
60201 memcpy(&h2, (void *)&aHdr[1], sizeof(h2));
192093 u8 *aHdr = &aData[p->iPgno==1 ? 100 : 0];
192095 p->flags = aHdr[0];
192106 p->nCell = get2byte(&aHdr[3]);
192111 nUnused += (int)aHdr[7];
192112 iOff = get2byte(&aHdr[1]);
210824 u8 aHdr[4] = {0x00, 0x00, 0x00, 0x00};
[all …]