Home
last modified time | relevance | path

Searched refs:nOut (Results 1 – 14 of 14) sorted by relevance

/external/bzip2/
Dunzcrash.c44 int nIn, nOut, nZ; variable
105 nOut = M_BLOCK_OUT; in main()
107 outbuf, &nOut, zbuf, nZ, 0, 0 ); in main()
113 if (nOut != nIn) { in main()
114 fprintf(stderr, "nIn/nOut mismatch %d %d\n", nIn, nOut ); in main()
117 for (i = 0; i < nOut; i++) in main()
122 if (i == nOut) fprintf(stderr, "really ok!\n" ); in main()
130 assert (nOut == nIn); in main()
131 for (i = 0; i < nOut; i++) { in main()
/external/oss-fuzz/projects/bzip2/
Dbzip2_compress_target.c44 unsigned int nZ, nOut; in LLVMFuzzerTestOneInput() local
74 nOut = size*2; in LLVMFuzzerTestOneInput()
75 char *outbuf = malloc(nOut); in LLVMFuzzerTestOneInput()
77 r = BZ2_bzBuffToBuffDecompress(outbuf, &nOut, zbuf, nZ, small, in LLVMFuzzerTestOneInput()
88 assert(nOut == size); in LLVMFuzzerTestOneInput()
Dbzip2_decompress_target.c36 unsigned int nZ, nOut; in LLVMFuzzerTestOneInput() local
39 nOut = size*2; in LLVMFuzzerTestOneInput()
40 char *outbuf = malloc(nOut); in LLVMFuzzerTestOneInput()
42 r = BZ2_bzBuffToBuffDecompress(outbuf, &nOut, (char *)data, size, in LLVMFuzzerTestOneInput()
/external/fastrpc/inc/
Dremote.h80 #define REMOTE_SCALARS_MAKEX(nAttr,nMethod,nIn,nOut,noIn,noOut) \ argument
84 (((uint32_t) (nOut) & 0xff) << 8) | \
88 #define REMOTE_SCALARS_MAKE(nMethod,nIn,nOut) REMOTE_SCALARS_MAKEX(0,nMethod,nIn,nOut,0,0) argument
/external/libaom/libaom/tools/txfm_analyzer/
Dtxfm_graph.cc554 int nOut = node_idx + ni; in gen_adst_B_graph() local
555 int nIn = nOut + size / 2; in gen_adst_B_graph()
556 connect_node(node, stage_num, node_num, stage_idx + 1, nOut, nOut, 1, nIn, in gen_adst_B_graph()
561 int nOut = node_idx + ni; in gen_adst_B_graph() local
562 int nIn = nOut - size / 2; in gen_adst_B_graph()
563 connect_node(node, stage_num, node_num, stage_idx + 1, nOut, nOut, -1, nIn, in gen_adst_B_graph()
775 int nOut = node_idx + second * dct_node_num + first; in connect_layer_2d() local
779 connect_node(node, stage_num, node_num, sOut, nOut, nIn, 1, nIn, 0); in connect_layer_2d()
792 int nOut = node_idx + j * dct_node_num1 + i; in connect_layer_2d_new() local
796 connect_node(node, stage_num, node_num, sOut, nOut, nIn, 1, nIn, 0); in connect_layer_2d_new()
/external/swiftshader/third_party/PowerVR_SDK/Shell/
DPVRShell.cpp945 int nIn, nOut; in Parse() local
965 nOut = 0; in Parse()
979 opt.pArg = &m_psSplit[nOut]; in Parse()
981 m_psSplit[nOut++] = m_psOrig[nIn]; in Parse()
988 m_psSplit[nOut++] = 0; in Parse()
989 opt.pVal = &m_psSplit[nOut]; in Parse()
995 m_psSplit[nOut++] = 0; in Parse()
1019 opt.pArg = &m_psSplit[nOut]; in Parse()
1021 m_psSplit[nOut++] = m_psOrig[nIn]; in Parse()
/external/sqlite/dist/
Dsqlite3.c2391 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
27461 int nOut; /* Size of the rendering buffer */
27685 nOut = etBUFSIZE;
27693 nOut = (int)n;
27695 bufpt = &zOut[nOut-1];
27713 length = (int)(&zOut[nOut-1]-bufpt);
27739 length = (int)(&zOut[nOut-1]-bufpt);
38781 int nOut /* Allocated size of buffer zOut */
38786 if( osGetcwd(zOut, nOut-2)==0 ){
38792 if( (iOff+nPath+1)>nOut ){
[all …]
Dshell.c4016 int nOut, in apndFullPathname() argument
4019 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname()
5144 int nOut /* Expected output size */ in zipfileInflate() argument
5146 u8 *aRes = sqlite3_malloc(nOut); in zipfileInflate()
5157 str.avail_out = nOut; in zipfileInflate()
5167 sqlite3_result_blob(pCtx, aRes, nOut, zipfileFree); in zipfileInflate()
6210 int nOut = 0; in zipfileStep() local
6211 rc = zipfileDeflate(aData, nData, &aFree, &nOut, &zErr); in zipfileStep()
6215 if( iMethod==8 || nOut<nData ){ in zipfileStep()
6217 nData = nOut; in zipfileStep()
[all …]
Dsqlite3.h1352 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
/external/sqlite/dist/orig/
Dsqlite3.c2391 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
27461 int nOut; /* Size of the rendering buffer */
27685 nOut = etBUFSIZE;
27693 nOut = (int)n;
27695 bufpt = &zOut[nOut-1];
27713 length = (int)(&zOut[nOut-1]-bufpt);
27739 length = (int)(&zOut[nOut-1]-bufpt);
38765 int nOut /* Allocated size of buffer zOut */
38770 if( osGetcwd(zOut, nOut-2)==0 ){
38776 if( (iOff+nPath+1)>nOut ){
[all …]
Dshell.c4010 int nOut, in apndFullPathname() argument
4013 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname()
5138 int nOut /* Expected output size */ in zipfileInflate() argument
5140 u8 *aRes = sqlite3_malloc(nOut); in zipfileInflate()
5151 str.avail_out = nOut; in zipfileInflate()
5161 sqlite3_result_blob(pCtx, aRes, nOut, zipfileFree); in zipfileInflate()
6204 int nOut = 0; in zipfileStep() local
6205 rc = zipfileDeflate(aData, nData, &aFree, &nOut, &zErr); in zipfileStep()
6209 if( iMethod==8 || nOut<nData ){ in zipfileStep()
6211 nData = nOut; in zipfileStep()
[all …]
Dsqlite3.h1352 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_from_nir.cpp1152 const unsigned int nOut = (info_out->io.genUserClip + 3) / 4; in assignSlots() local
1154 for (unsigned int n = 0; n < nOut; ++n) { in assignSlots()
Dnv50_ir_from_tgsi.cpp1150 const unsigned int nOut = (info_out->io.genUserClip + 3) / 4; in scanSource() local
1152 for (unsigned int n = 0; n < nOut; ++n) { in scanSource()