Searched refs:dataLength (Results 1 – 7 of 7) sorted by relevance
| /expo/packages/@expo/cli/src/run/ios/appleDevice/protocol/ |
| H A D | AFCProtocol.ts | 449 const dataLength = data ? data.length : 0; constant 455 header.writeUInt32LE(AFC_HEADER_SIZE + dataLength + payloadLength, 8); 456 header.writeUInt32LE(AFC_HEADER_SIZE + dataLength, 16);
|
| /expo/ios/versioned/sdk47/EXGL/ios/EXGL/ |
| H A D | ABI47_0_0EXGLContext.mm | 239 NSInteger dataLength = width * height * 4; 240 GLubyte *buffer = (GLubyte *) malloc(dataLength * sizeof(GLubyte)); 245 CGDataProviderRef providerRef = CGDataProviderCreateWithData(NULL, buffer, dataLength, NULL);
|
| /expo/packages/expo-gl/ios/ |
| H A D | EXGLContext.mm | 249 NSInteger dataLength = width * height * 4; 250 GLubyte *buffer = (GLubyte *) malloc(dataLength * sizeof(GLubyte)); 255 CGDataProviderRef providerRef = CGDataProviderCreateWithData(NULL, buffer, dataLength, NULL);
|
| /expo/ios/versioned/sdk49/ExpoGL/ios/ |
| H A D | ABI49_0_0EXGLContext.mm | 249 NSInteger dataLength = width * height * 4; 250 GLubyte *buffer = (GLubyte *) malloc(dataLength * sizeof(GLubyte)); 255 CGDataProviderRef providerRef = CGDataProviderCreateWithData(NULL, buffer, dataLength, NULL);
|
| /expo/ios/versioned/sdk48/ExpoGL/ios/ |
| H A D | ABI48_0_0EXGLContext.mm | 239 NSInteger dataLength = width * height * 4; 240 GLubyte *buffer = (GLubyte *) malloc(dataLength * sizeof(GLubyte)); 245 CGDataProviderRef providerRef = CGDataProviderCreateWithData(NULL, buffer, dataLength, NULL);
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/WebSocket/ |
| H A D | ABI48_0_0RCTSRWebSocket.m | 1077 NSUInteger dataLength = _outputBuffer.length; 1078 if (dataLength - _outputBufferOffset > 0 && _outputStream.hasSpaceAvailable) { 1080 maxLength:dataLength - _outputBufferOffset]; 1117 [self _addConsumerWithScanner:consumer callback:callback dataLength:0]; 1120 - (void)_addConsumerWithDataLength:(size_t)dataLength 1126 assert(dataLength); 1130 bytesNeeded:dataLength 1136 …WithScanner:(stream_scanner)consumer callback:(data_callback)callback dataLength:(size_t)dataLength 1141 bytesNeeded:dataLength
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/WebSocket/ |
| H A D | ABI47_0_0RCTSRWebSocket.m | 1016 NSUInteger dataLength = _outputBuffer.length; 1017 if (dataLength - _outputBufferOffset > 0 && _outputStream.hasSpaceAvailable) { 1018 …outputStream write:_outputBuffer.bytes + _outputBufferOffset maxLength:dataLength - _outputBufferO… 1054 [self _addConsumerWithScanner:consumer callback:callback dataLength:0]; 1057 - (void)_addConsumerWithDataLength:(size_t)dataLength callback:(data_callback)callback readToCurren… 1060 assert(dataLength); 1062 …ct:[_consumerPool consumerWithScanner:nil handler:callback bytesNeeded:dataLength readToCurrentFra… 1066 …WithScanner:(stream_scanner)consumer callback:(data_callback)callback dataLength:(size_t)dataLength 1069 …consumerPool consumerWithScanner:consumer handler:callback bytesNeeded:dataLength readToCurrentFra…
|