Home
last modified time | relevance | path

Searched refs:byteLength (Results 1 – 25 of 112) sorted by relevance

12345

/expo/packages/expo-standard-web-crypto/build/
H A DgetRandomValues.js23 if (values.byteLength > MAX_RANDOM_BYTES) {
24 …throw new QuotaExceededError(`The ArrayBuffer view's byte length (${values.byteLength}) exceeds th…
39 const byteView = new Uint8Array(values.buffer, values.byteOffset, values.byteLength);
/expo/packages/expo-standard-web-crypto/src/
H A DgetRandomValues.ts40 if (values.byteLength > MAX_RANDOM_BYTES) {
42 …`The ArrayBuffer view's byte length (${values.byteLength}) exceeds the number of bytes of entropy …
60 const byteView = new Uint8Array(values.buffer, values.byteOffset, values.byteLength);
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkFont.h299 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
323 int countText(const void* text, size_t byteLength, SkTextEncoding encoding) const { in countText() argument
324 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0); in countText()
336 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
338 return this->measureText(text, byteLength, encoding, bounds, nullptr);
352 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkFont.h300 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
324 int countText(const void* text, size_t byteLength, SkTextEncoding encoding) const { in countText() argument
325 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0); in countText()
337 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
339 return this->measureText(text, byteLength, encoding, bounds, nullptr);
353 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkFont.h300 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
324 int countText(const void* text, size_t byteLength, SkTextEncoding encoding) const { in countText() argument
325 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0); in countText()
337 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
339 return this->measureText(text, byteLength, encoding, bounds, nullptr);
353 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkFont.h300 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
324 int countText(const void* text, size_t byteLength, SkTextEncoding encoding) const { in countText() argument
325 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0); in countText()
337 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
339 return this->measureText(text, byteLength, encoding, bounds, nullptr);
353 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkFont.h300 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
324 int countText(const void* text, size_t byteLength, SkTextEncoding encoding) const { in countText() argument
325 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0); in countText()
337 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
339 return this->measureText(text, byteLength, encoding, bounds, nullptr);
353 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkFont.h299 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
323 int countText(const void* text, size_t byteLength, SkTextEncoding encoding) const { in countText() argument
324 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0); in countText()
336 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
338 return this->measureText(text, byteLength, encoding, bounds, nullptr);
352 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkFont.h300 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
324 int countText(const void* text, size_t byteLength, SkTextEncoding encoding) const { in countText() argument
325 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0); in countText()
337 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
339 return this->measureText(text, byteLength, encoding, bounds, nullptr);
353 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkFont.h300 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
324 int countText(const void* text, size_t byteLength, SkTextEncoding encoding) const { in countText() argument
325 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0); in countText()
337 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
339 return this->measureText(text, byteLength, encoding, bounds, nullptr);
353 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding encoding,
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/crypto/
H A DCryptoModule.kt56 output.write(digest, output.byteOffset, output.byteLength) in <lambda>()
60 val array = ByteArray(typedArray.byteLength) in <lambda>()
62 typedArray.write(array, typedArray.byteOffset, typedArray.byteLength) in <lambda>()
/expo/packages/expo-crypto/android/src/main/java/expo/modules/crypto/
H A DCryptoModule.kt56 output.write(digest, output.byteOffset, output.byteLength) in <lambda>()
60 val array = ByteArray(typedArray.byteLength) in <lambda>()
62 typedArray.write(array, typedArray.byteOffset, typedArray.byteLength) in <lambda>()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/crypto/
H A DCryptoModule.kt56 output.write(digest, output.byteOffset, output.byteLength) in <lambda>()
60 val array = ByteArray(typedArray.byteLength) in <lambda>()
62 typedArray.write(array, typedArray.byteOffset, typedArray.byteLength) in <lambda>()
/expo/packages/expo-auth-session/build/
H A DPKCE.js7 if (input.byteLength !== input.length)
16 for (let i = 0; i < buffer.byteLength; i += 1) {
/expo/packages/expo-auth-session/src/
H A DPKCE.ts9 if (input.byteLength !== input.length) input = new Uint8Array(input.buffer);
20 for (let i = 0; i < buffer.byteLength; i += 1) {
/expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/Api/Cognito/
H A DABI48_0_0RNAWSCognito.m12 ABI48_0_0RCT_EXPORT_SYNCHRONOUS_TYPED_METHOD(NSString*, getRandomBase64:(NSUInteger)byteLength) {
13 NSMutableData *data = [NSMutableData dataWithLength:byteLength];
14 int result = SecRandomCopyBytes(kSecRandomDefault, byteLength, data.mutableBytes);
H A DABI48_0_0RNAWSCognito.h15 -(NSString*)getRandomBase64:(NSUInteger)byteLength;
/expo/ios/versioned-react-native/ABI49_0_0/Expo/ExpoKit/Core/Api/Cognito/
H A DABI49_0_0RNAWSCognito.m12 ABI49_0_0RCT_EXPORT_SYNCHRONOUS_TYPED_METHOD(NSString*, getRandomBase64:(NSUInteger)byteLength) {
13 NSMutableData *data = [NSMutableData dataWithLength:byteLength];
14 int result = SecRandomCopyBytes(kSecRandomDefault, byteLength, data.mutableBytes);
H A DABI49_0_0RNAWSCognito.h15 -(NSString*)getRandomBase64:(NSUInteger)byteLength;
/expo/ios/versioned-react-native/ABI47_0_0/Expo/ExpoKit/Core/Api/Cognito/
H A DABI47_0_0RNAWSCognito.m12 ABI47_0_0RCT_EXPORT_SYNCHRONOUS_TYPED_METHOD(NSString*, getRandomBase64:(NSUInteger)byteLength) {
13 NSMutableData *data = [NSMutableData dataWithLength:byteLength];
14 int result = SecRandomCopyBytes(kSecRandomDefault, byteLength, data.mutableBytes);
/expo/packages/expo-modules-core/android/src/main/cpp/
H A DJavaScriptTypedArray.cpp59 auto byteLength = typedArrayWrapper->byteLength(jsRuntime); in toDirectBuffer() local
64 byteLength - byteOffset in toDirectBuffer()
/expo/ios/Exponent/Versioned/Core/Api/Cognito/
H A DRNAWSCognito.m12 RCT_EXPORT_SYNCHRONOUS_TYPED_METHOD(NSString*, getRandomBase64:(NSUInteger)byteLength) {
13 NSMutableData *data = [NSMutableData dataWithLength:byteLength];
14 int result = SecRandomCopyBytes(kSecRandomDefault, byteLength, data.mutableBytes);
/expo/ios/versioned/sdk48/ExpoCrypto/
H A DCryptoModule.swift61 array.byteLength, in getRandomValues()
74 algorithm.digest(data.rawPointer, UInt32(data.byteLength), outputPtr) in digest()
/expo/ios/versioned/sdk49/ExpoCrypto/
H A DCryptoModule.swift61 array.byteLength, in getRandomValues()
74 algorithm.digest(data.rawPointer, UInt32(data.byteLength), outputPtr) in digest()
/expo/packages/expo-crypto/ios/
H A DCryptoModule.swift61 array.byteLength, in getRandomValues()
74 algorithm.digest(data.rawPointer, UInt32(data.byteLength), outputPtr) in digest()

12345