HomeSort by relevance Sort by last modified time
    Searched defs:dataCount (Results 1 - 14 of 14) sorted by null

  /external/pdfium/fxbarcode/datamatrix/
BC_Base256Encoder.cpp 50 int32_t dataCount = buffer.GetLength() - 1;
52 FXSYS_itoa(dataCount, buf, 10);
56 context.getCodewordCount() + dataCount + lengthFieldSize;
63 if (dataCount <= 249) {
64 buffer.SetAt(0, static_cast<wchar_t>(dataCount));
65 } else if (dataCount > 249 && dataCount <= 1555) {
66 buffer.SetAt(0, static_cast<wchar_t>((dataCount / 250) + 249));
67 buffer.Insert(1, static_cast<wchar_t>(dataCount % 250));
  /frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
BluetoothPacketDecoder.java 67 int dataCount = 0;
86 if (dataCount > 0) {
89 receiver.send(mBuffer, 0, dataCount, nanoTimestamp);
93 dataCount = 0;
103 mBuffer[dataCount++] = b;
107 if (dataCount > 0) {
109 receiver.send(mBuffer, 0, dataCount, nanoTimestamp);
  /prebuilts/go/darwin-x86/src/runtime/
profbuf.go 129 func (x profIndex) dataCount() uint32 {
137 // countSub subtracts two counts obtained from profIndex.dataCount or profIndex.tagCount,
140 // tagCount wraps at 2^30, while dataCount wraps at 2^32.
248 nd := countSub(br.dataCount(), bw.dataCount()) + len(b.data)
250 i := int(bw.dataCount() % uint32(len(b.data)))
274 nd := countSub(br.dataCount(), bw.dataCount()) + len(b.data)
278 i := int(bw.dataCount() % uint32(len(b.data)))
358 wd := int(bw.dataCount() % uint32(len(b.data))
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
profbuf.go 129 func (x profIndex) dataCount() uint32 {
137 // countSub subtracts two counts obtained from profIndex.dataCount or profIndex.tagCount,
140 // tagCount wraps at 2^30, while dataCount wraps at 2^32.
248 nd := countSub(br.dataCount(), bw.dataCount()) + len(b.data)
250 i := int(bw.dataCount() % uint32(len(b.data)))
274 nd := countSub(br.dataCount(), bw.dataCount()) + len(b.data)
278 i := int(bw.dataCount() % uint32(len(b.data)))
358 wd := int(bw.dataCount() % uint32(len(b.data))
    [all...]
  /external/icu/icu4c/source/common/
ucol_swp.cpp 326 int dataCount = ds->readUInt16(*((uint16_t*)(inBytes+header.scriptToLeadByte + 2))); // each entry = uint16
328 4 + (4 * indexCount) + (2 * dataCount),
335 int dataCount = ds->readUInt16(*((uint16_t*)(inBytes+header.leadByteToScript + 2))); // each entry = uint16
337 4 + (2 * indexCount) + (2 * dataCount),
  /frameworks/base/services/core/java/com/android/server/am/
AssistDataRequester.java 253 final int dataCount = mAssistData.size();
254 for (int i = 0; i < dataCount; i++) {
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 134 size_t dataCount = dataBytes / typeSize;
141 return metadata->update(tag, dataPtr, dataCount); \
  /system/chre/platform/slpi/
host_link.cc 126 uint32_t dataCount;
398 builder, cbData->hostClientId, cbData->success, cbData->dataCount);
414 cbData->dataCount++;
787 cbData->dataCount = 0;
  /external/freetype/src/truetype/
ttgxvar.h 98 FT_UInt dataCount;
99 GX_ItemVarData varData; /* array of dataCount records; */
  /external/freetype/include/freetype/internal/
cfftypes.h 141 FT_UInt dataCount;
142 CFF_VarData* varData; /* array of dataCount records */
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewController.java 559 final int dataCount = data.getCount();
560 if (dataCount <= 1) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java     [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/
ContactLoader.java 667 final int dataCount = dataItems.size();
668 for (int dataIndex = 0; dataIndex < dataCount; dataIndex++) {
    [all...]
  /external/zxing/core/
core.jar 

Completed in 1110 milliseconds