Searched refs:getLength (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOMultiMemoryDescriptor.cpp180 _length += descriptors[index]->getLength();
292 if ( offset < _descriptors[index]->getLength() )
296 offset -= _descriptors[index]->getLength();
319 if ( offset < _descriptors[index]->getLength() )
323 offset -= _descriptors[index]->getLength();
347 if ( offset < _descriptors[index]->getLength() )
351 offset -= _descriptors[index]->getLength();
383 if ( offset < _descriptors[index]->getLength() ) break;
384 offset -= _descriptors[index]->getLength();
389 IOByteCount copy = min(_descriptors[index]->getLength(), withLengt
[all...]
H A DIODeviceTreeSupport.cpp278 propSize = propObj->getLength();
431 && (4 == data->getLength())) {
446 && (sizeof(UInt32) <= (len = data->getLength()))) {
508 if( data && (data->getLength() >= (acells * sizeof(UInt32))))
536 endMap = map + (data->getLength() / sizeof(UInt32));
538 if( data && (data->getLength() >= ((acells + icells) * sizeof(UInt32))))
675 localEnd = localBits + (local->getLength() / sizeof(UInt32));
789 lastName = names + data->getLength();
792 lastName = names + string->getLength() + 1;
797 keyLen = key->getLength();
[all...]
H A DIONVRAM.cpp341 tmpString->getLength());
832 tmpDataLength = tmpString->getLength();
1069 propNameLength = propSymbol->getLength();
1087 if (tmpString != 0) propDataLength = tmpString->getLength();
1094 propDataLength = tmpData->getLength();
1193 bootCommandDataLength = bootCommand->getLength();
1213 bootArgsDataLength = bootArgs->getLength();
1344 nameLength = name->getLength();
1345 dataLength = value->getLength();
1432 endPtr = wherePtr + value->getLength();
[all...]
H A DIOCatalogue.cpp168 len = stringObj->getLength() + 1;
179 len = dataObj->getLength();
196 element->value_size = stringObj->getLength() + 1;
219 element->value_size = dataObj->getLength();
220 DPRINTF(("osdict: data size %d\n", dataObj->getLength()));
304 strtabsize += dictkey->getLength() + 1;
326 strtabsize += key->getLength() + 1;
366 element->key_size = key->getLength() + 1;
446 dele->key_size = dictkey->getLength() + 1;
448 dictkey->getCStringNoCopy(), dictkey->getLength(), dstrta
[all...]
H A DIOPlatformExpert.cpp735 len = ((OSData *)inObj)->getLength();
870 if ( data && data->getLength( ) == 16 )
878 SHA1Update( &context, data->getBytesNoCopy( ), data->getLength( ) );
897 if ( data && data->getLength( ) == sizeof( uuid_t ) )
1214 serialNumberSize = myProperty->getLength();
H A DIOInterleavedMemoryDescriptor.cpp189 if ( (offset + length) > descriptor->getLength() )
H A DIOMemoryCursor.cpp128 IOByteCount inDescriptorLength = inDescriptor->getLength();
H A DIORegistryEntry.cpp862 len = plane->nameKey->getLength();
870 aliasLen = alias->getLength();
914 len = plane->nameKey->getLength() + 1;
917 compLen = alias->getLength();
1094 || (bestKey->getLength() > key->getLength()))
1564 keysuffix = key->getLength();
H A DIOHibernateIO.cpp241 remaining = length = min(length, md->getLength() - offset);
279 remaining = length = min(length, md->getLength() - offset);
578 vars->bufferSize = ioBuffer->getLength() >> 1;
685 if ((extentsData->getLength() >= sizeof(IOPolledFileExtent)))
1771 count = vars->fileExtents->getLength() / sizeof(IOPolledFileExtent);
1806 count = vars->fileExtents->getLength();
1889 count = vars->previewBuffer->getLength();
2103 count = vars->fileExtents->getLength();
H A DIOMemoryDescriptor.cpp164 virtual IOByteCount getLength();
236 (((osd)->getLength() - ((char *) getIOPLList(d) - (char *) d)) / sizeof(ioPLBlock))
1065 * getLength:
1069 IOByteCount IOMemoryDescriptor::getLength() const function in class:IOMemoryDescriptor
1598 data->fLength = getLength();
1718 remaining = length = min(length, getLength() - offset);
2320 if( (_offset + fLength) > _memory->getLength())
2911 IOByteCount _IOMemoryMap::getLength()
3058 0, getLength() ));
3066 0, getLength() ));
[all...]
H A DIOUserClient.cpp1981 len = data->getLength();
1985 len = str->getLength() + 1;
2043 len = s->getLength();
2085 len = s->getLength();
2116 len = s->getLength();
3635 if( s->getLength() > sizeof( io_string_t)) {
3861 size = s->getLength();
3978 ? args->structureInputDescriptor->getLength() : args->structureInputSize)))
3992 ? args->structureOutputDescriptor->getLength() : args->structureOutputSize)))
/macosx-10.5.8/xnu-1228.15.4/libkern/c++/Tests/TestSerialization/test2/
H A Dtest2_main.cpp137 IOLog("serialized object's length = %d, capacity = %d\n", s->getLength(), s->getCapacity());
153 s2->getLength(), s2->getCapacity());
/macosx-10.5.8/xnu-1228.15.4/iokit/Tests/
H A DTestContainers.cpp142 TEST_ASSERT('d', "1b", !test1->getLength());
147 TEST_ASSERT('d', "1g", !test1->getLength());
159 TEST_ASSERT('d', "2b", !test1->getLength());
162 TEST_ASSERT('d', "2e", test1->getLength() == DATA_SIZE_1);
187 TEST_ASSERT('d', "3b", test1->getLength() == sizeof(testData));
192 TEST_ASSERT('d', "3g", test1->getLength() == sizeof(testData));
208 TEST_ASSERT('d', "4b", !test1->getLength());
267 TEST_ASSERT('s', "1d", strlen(testC00) == test1->getLength());
/macosx-10.5.8/xnu-1228.15.4/libkern/c++/Tests/TestSerialization/test1/
H A Dtest1_main.cpp83 IOLog("serialized object's length = %d, capacity = %d\n", s->getLength(), s->getCapacity());
/macosx-10.5.8/xnu-1228.15.4/libkern/libkern/c++/
H A DOSSerialize.h85 virtual unsigned int getLength() const;
H A DOSString.h107 @function getLength
111 virtual unsigned int getLength() const;
H A DOSData.h148 @function getLength
152 virtual unsigned int getLength() const;
/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSString.cpp174 unsigned int OSString::getLength() const { return length - 1; } function in class:OSString
232 unsigned int dataLen = obj->getLength ();;
H A DOSData.cpp197 unsigned int OSData::getLength() const { return length; } function in class:OSData
345 stringLen = obj->getLength ();
H A DOSSerialize.cpp189 unsigned int OSSerialize::getLength() const { return length; } function in class:OSSerialize
/macosx-10.5.8/xnu-1228.15.4/libsa/
H A Dcatalogue.cpp151 if (bundleIdentifier->getLength() >= KMOD_MAX_NAME) {
209 if (!stringValue || stringValue->getLength() == 0) {
281 if (personalityID->getLength() >= KMOD_MAX_NAME) {
331 if (key->getLength() >= KMOD_MAX_NAME) {
1071 driverPlistDataObject->getLength());
1246 driverPlistDataObject->getLength());
1427 mkext_file_info.length = mkextDataObject->getLength();
1578 if (data->getLength() < (kPrelinkReservedCount * sizeof(UInt32))) {
1963 codeData->getLength());
H A Dkext.cpp182 *code_size = driverCode->getLength();
198 *code_size = driverCode->getLength();
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIOMemoryDescriptor.h455 /*! @function getLength
460 virtual IOByteCount getLength() const;
687 /*! @function getLength
692 virtual IOByteCount getLength() = 0;
/macosx-10.5.8/AppleMacRiscPCI-3.4/
H A DAppleMacRiscPCI.cpp481 ioPhysLengths[0] = md->getLength();
487 ioPhysLengths[1] = md->getLength();
758 ioPhysLengths = md->getLength();
1501 // ok = agpRange->allocate( memory->getLength(), &agpOffset );
1567 length = memory->getLength();
/macosx-10.5.8/xnu-1228.15.4/iokit/bsddev/
H A DIOKitBSDInit.cpp838 *packet_length = data->getLength();

Completed in 104 milliseconds

12