HomeSort by relevance Sort by last modified time
    Searched refs:resultSize (Results 1 - 13 of 13) sorted by null

  /external/srec/srec/Recognizer/include/
SR_RecognizerResult.h 58 * @param resultSize [out] Number of entries
61 ESR_ReturnCode(*getSize)(const struct SR_RecognizerResult_t* self, size_t* resultSize);
128 * @param resultSize [out] Number of entries
132 size_t* resultSize);
SR_RecognizerResultImpl.h 88 size_t* resultSize);
  /external/icu4c/i18n/
ucol_sit.cpp 537 static void appendShortStringElement(const char *src, int32_t len, char *result, int32_t *resultSize, int32_t capacity, char arg)
540 if(*resultSize) {
541 if(*resultSize < capacity) {
544 (*resultSize)++;
546 *resultSize += len + 1;
547 if(*resultSize < capacity) {
564 int32_t resultSize = 0;
581 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, languageArg);
583 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, regionArg);
585 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, scriptArg)
    [all...]
  /external/webkit/JavaScriptCore/wtf/
TCSystemAlloc.cpp 466 size_t resultSize = VirtualQuery(ptr, &info, sizeof(info));
467 ASSERT_UNUSED(resultSize, resultSize == sizeof(info));
506 size_t resultSize = VirtualQuery(ptr, &info, sizeof(info));
507 ASSERT_UNUSED(resultSize, resultSize == sizeof(info));
  /external/icu4c/test/cintltst/
reapits.c 818 int32_t resultSize;
836 resultSize = uregex_replaceAll(re, replText, -1, buf, sizeof(buf)/2, &status);
839 TEST_ASSERT(resultSize == expectedResultSize);
844 resultSize = uregex_replaceAll(re, replText, -1, buf, sizeof(buf)/2, &status);
847 TEST_ASSERT(resultSize == u_strlen(text2));
853 resultSize = uregex_replaceAll(re, replText, -1, buf, expectedResultSize, &status);
856 TEST_ASSERT(resultSize == expectedResultSize);
857 TEST_ASSERT(buf[resultSize] == (UChar)0xffff);
864 resultSize = uregex_replaceAll(re, replText, -1, buf, strlen("Replace xaax x1x x...x."), &status);
867 TEST_ASSERT(resultSize == (int32_t)strlen("Replace <aa> <1> <...>."))
    [all...]
  /dalvik/libdex/
DexClass.c 118 size_t resultSize = sizeof(DexClassData) +
124 DexClassData* result = malloc(resultSize);
  /external/webkit/WebCore/platform/wx/
FileSystemWx.cpp 67 bool getFileSize(const String& path, long long& resultSize)
72 resultSize = (long long)size.GetValue();
  /external/webkit/WebCore/platform/gtk/
FileSystemGtk.cpp 122 bool getFileSize(const String& path, long long& resultSize)
134 resultSize = statResult.st_size;
  /external/srec/srec/Grammar/include/
SR_Grammar.h 65 * @param resultSize Size of result buffer. If the passed in buffer was not large enough to hold
68 typedef ESR_ReturnCode(*SR_GrammarDispatchFunction)(LCHAR* functionName, LCHAR** argv, size_t argc, void* value, LCHAR* result, size_t* resultSize);
  /frameworks/base/core/java/android/view/
ViewGroup.java     [all...]
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 187 ESR_ReturnCode myDSMCallback(LCHAR* functionName, LCHAR** argv, size_t argc, void* value, LCHAR* result, size_t* resultSize)
207 if (*resultSize < LSTRLEN(L("1000"))+1)
209 *resultSize = LSTRLEN(L("1000"))+1;
213 *resultSize = LSTRLEN(L("1000"))+1;
216 if (*resultSize < LSTRLEN(L("0"))+1)
218 *resultSize = LSTRLEN(L("0"))+1;
222 *resultSize = LSTRLEN(L("0"))+1;
    [all...]
  /external/srec/srec/test/SRecTestAudio/src/
SRecTestAudio.c 185 ESR_ReturnCode myDSMCallback(LCHAR* functionName, LCHAR** argv, size_t argc, void* value, LCHAR* result, size_t* resultSize)
205 if (*resultSize < LSTRLEN(L("1000"))+1)
207 *resultSize = LSTRLEN(L("1000"))+1;
211 *resultSize = LSTRLEN(L("1000"))+1;
214 if (*resultSize < LSTRLEN(L("0"))+1)
216 *resultSize = LSTRLEN(L("0"))+1;
220 *resultSize = LSTRLEN(L("0"))+1;
    [all...]

Completed in 238 milliseconds