Home
last modified time | relevance | path

Searched refs:zIn (Results 1 – 15 of 15) sorted by relevance

/external/lzma/CPP/7zip/Bundles/Format7zExtractR/
Dmakefile57 $O\7zIn.obj \
/external/lzma/CPP/7zip/Bundles/SFXSetup/
Dmakefile77 $O\7zIn.obj \
DSFXSetup.dsp172 SOURCE=..\..\Archive\7z\7zIn.cpp
176 SOURCE=..\..\Archive\7z\7zIn.h
/external/lzma/CPP/7zip/Bundles/Format7zR/
Dmakefile66 $O\7zIn.obj \
/external/lzma/CPP/7zip/Bundles/SFXCon/
Dmakefile85 $O\7zIn.obj \
DSFXCon.dsp228 SOURCE=..\..\Archive\7z\7zIn.cpp
232 SOURCE=..\..\Archive\7z\7zIn.h
/external/lzma/CPP/7zip/Bundles/SFXWin/
Dmakefile103 $O\7zIn.obj \
DSFXWin.dsp164 SOURCE=..\..\Archive\7z\7zIn.cpp
168 SOURCE=..\..\Archive\7z\7zIn.h
/external/lzma/CPP/7zip/Bundles/Alone7z/
Dmakefile88 $O\7zIn.obj \
DAlone.dsp872 SOURCE=..\..\Archive\7z\7zIn.cpp
876 SOURCE=..\..\Archive\7z\7zIn.h
/external/lzma/DOC/
D7zC.txt24 7zIn.* - .7z archive opening
Dlzma-history.txt230 - The bug in 7z_C (7zIn.c) was fixed:
/external/sqlite/dist/orig/
Dsqlite3.c16217 #define SQLITE_SKIP_UTF8(zIn) { \ argument
16218 if( (*(zIn++))>=0xc0 ){ \
16219 while( (*zIn & 0xc0)==0x80 ){ zIn++; } \
27295 #define READ_UTF16LE(zIn, TERM, c){ \
27296 c = (*zIn++); \
27297 c += ((*zIn++)<<8); \
27299 int c2 = (*zIn++); \
27300 c2 += ((*zIn++)<<8); \
27305 #define READ_UTF16BE(zIn, TERM, c){ \
27306 c = ((*zIn++)<<8); \
[all …]
/external/sqlite/dist/
Dsqlite3.c16217 #define SQLITE_SKIP_UTF8(zIn) { \ argument
16218 if( (*(zIn++))>=0xc0 ){ \
16219 while( (*zIn & 0xc0)==0x80 ){ zIn++; } \
27295 #define READ_UTF16LE(zIn, TERM, c){ \
27296 c = (*zIn++); \
27297 c += ((*zIn++)<<8); \
27299 int c2 = (*zIn++); \
27300 c2 += ((*zIn++)<<8); \
27305 #define READ_UTF16BE(zIn, TERM, c){ \
27306 c = ((*zIn++)<<8); \
[all …]
/external/deqp/framework/common/
DtcuAstcUtil.cpp1332 int computeTexelPartition (deUint32 seedIn, deUint32 xIn, deUint32 yIn, deUint32 zIn, int numPartit… in computeTexelPartition() argument
1334 DE_ASSERT(zIn == 0); in computeTexelPartition()
1337 const deUint32 z = smallBlock ? zIn << 1 : zIn; in computeTexelPartition()