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

  /frameworks/base/core/java/android/view/textservice/
SentenceSuggestionsInfo.java 53 final int infoSize = suggestionsInfos.length;
54 mSuggestionsInfos = Arrays.copyOf(suggestionsInfos, infoSize);
55 mOffsets = Arrays.copyOf(offsets, infoSize);
56 mLengths = Arrays.copyOf(lengths, infoSize);
60 final int infoSize = source.readInt();
61 mSuggestionsInfos = new SuggestionsInfo[infoSize];
77 final int infoSize = mSuggestionsInfos.length;
78 dest.writeInt(infoSize);
  /external/icu4c/common/
udataswp.c 239 uint16_t headerSize, infoSize;
263 infoSize=ds->readUInt16(pHeader->info.size);
266 infoSize<sizeof(UDataInfo) ||
267 headerSize<(sizeof(pHeader->dataHeader)+infoSize) ||
270 udata_printError(ds, "udata_swapDataHeader(): header size mismatch - headerSize %d infoSize %d length %d\n",
271 headerSize, infoSize, length);
297 infoSize+=sizeof(pHeader->dataHeader);
298 s=(const char *)inData+infoSize;
299 maxLength=headerSize-infoSize;
303 ds->swapInvChars(ds, s, length, (char *)outData+infoSize, pErrorCode)
    [all...]
  /bionic/libc/bionic/
malloc_debug_common.cpp 108 * "*infoSize" is set to the size of a single entry
114 size_t* infoSize, size_t* totalMemory, size_t* backtraceSize) {
116 if (info == NULL || overallSize == NULL || infoSize == NULL ||
127 *infoSize = 0;
148 *infoSize = (sizeof(size_t) * 2) + (sizeof(intptr_t) * BACKTRACE_SIZE);
149 *overallSize = *infoSize * gHashTable.count;
168 if (entrySize < *infoSize) {
170 memset(head + entrySize, 0, *infoSize - entrySize);
173 entrySize = *infoSize;
176 head += *infoSize;
    [all...]
  /external/webkit/Source/WebKit2/Shared/Plugins/Netscape/win/
NetscapePluginModuleWin.cpp 73 UINT infoSize;
74 if (!::VerQueryValueW(versionInfoData.get(), L"\\", reinterpret_cast<void**>(&info), &infoSize) || infoSize < sizeof(VS_FIXEDFILEINFO))
  /external/webkit/Source/WebCore/platform/audio/mac/
AudioDestinationMac.cpp 52 UInt32 infoSize = sizeof(deviceID);
55 OSStatus result = AudioObjectGetPropertyData(kAudioObjectSystemObject, &defaultOutputDeviceAddress, 0, 0, &infoSize, (void*)&deviceID);
60 infoSize = sizeof(Float64);
63 result = AudioObjectGetPropertyData(deviceID, &nominalSampleRateAddress, 0, 0, &infoSize, (void*)&nominalSampleRate);
  /frameworks/av/media/libmedia/
MemoryLeakTrackUtil.cpp 33 size_t* infoSize, size_t* totalMemory, size_t* backtraceSize);
84 size_t infoSize = 0;
88 get_malloc_leak_info(&info, &overallSize, &infoSize, &totalMemory, &backtraceSize);
91 size_t count = overallSize / infoSize;