Home
last modified time | relevance | path

Searched refs:compLen (Results 1 – 3 of 3) sorted by relevance

/third_party/vk-gl-cts/executor/
DxeTestCase.cpp47 int compLen = 0; in getFirstComponentLength() local
48 while (path[compLen] != 0 && path[compLen] != '.') in getFirstComponentLength()
49 compLen++; in getFirstComponentLength()
50 return compLen; in getFirstComponentLength()
53 static bool compareNameToPathComponent (const char* name, const char* path, int compLen) in compareNameToPathComponent() argument
55 for (int pos = 0; pos < compLen; pos++) in compareNameToPathComponent()
61 if (name[compLen] != 0) in compareNameToPathComponent()
156 int compLen = getFirstComponentLength(path); in find() local
157 XE_CHECK(compLen > 0); in find()
159 if (compareNameToPathComponent(getName(), path, compLen)) in find()
[all …]
/third_party/icu/tools/colprobe/
Dsortedlines.cpp2007 int32_t len = 0, compLen = 0; in removeDecompositionsFromRepertoire() local
2021 compLen = unorm_normalize(string, len, UNORM_NFC, 0, composed, 256, &status); in removeDecompositionsFromRepertoire()
2022 if(compLen != len || u_strcmp(string, composed) != 0) { in removeDecompositionsFromRepertoire()
2023 compString.setTo(composed, compLen); in removeDecompositionsFromRepertoire()
/third_party/curl/lib/
Dftp.c4207 size_t compLen = slashPos - curPos; in ftp_parse_url_path() local
4210 if((compLen == 0) && (ftpc->dirdepth == 0)) in ftp_parse_url_path()
4211 ++compLen; in ftp_parse_url_path()
4216 if(compLen > 0) { in ftp_parse_url_path()
4217 char *comp = Curl_memdup0(curPos, compLen); in ftp_parse_url_path()