Lines Matching refs:c
34 #define ZIP_MAKEID4(endian,a,b,c,d) ((endian==ZIPFILE_ENDIAN_LITTLE) ? \ argument
35 …((((UINT32)a)&0xFF) | ((((UINT32)b)&0xFF)<<8) | ((((UINT32)c)&0xFF)<<16) | ((((UINT32)d)&0xFF)<<24…
36 …((((UINT32)d)&0xFF) | ((((UINT32)c)&0xFF)<<8) | ((((UINT32)b)&0xFF)<<16) | ((((UINT32)a)&0xFF)<<24…
40 #define ZIP_TARGETID4(a,b,c,d) ZIP_MAKEID4(ZIPFILE_ENDIAN,a,b,c,d) argument
417 int c,v; in sCompStrLens() local
419 c = ((int)strLen2) - ((int)strLen1); in sCompStrLens()
420 if (c > 0) in sCompStrLens()
423 c = STRNICMP(pStr1, pStr2, strLen1); in sCompStrLens()
424 if (!c) in sCompStrLens()
426 return c; in sCompStrLens()
429 if (c < 0) in sCompStrLens()
443 int c; in sComparePaths() local
474 c = sCompStrLens(pPath1, (UINT32)(pSlash1-pPath1), pPath2, (UINT32)(pSlash2-pPath2)); in sComparePaths()
475 if (c) in sComparePaths()
476 return c; in sComparePaths()
781 char c; in sFindInDir() local
795 c = *pSlash; in sFindInDir()
796 if ((!c) || (c=='/')) in sFindInDir()
801 if (!c) in sFindInDir()