Home
last modified time | relevance | path

Searched refs:maximumValue (Results 1 – 25 of 32) sorted by relevance

12

/expo/packages/expo-image/ios/
H A DBlurhash.swift21 let maximumValue = Float(quantisedMaximumValue + 1) / 166 in image() variable
33 return decodeAC(value, maximumValue: maximumValue * punch) in image()
159 let maximumValue: Float variable
163 maximumValue = Float(quantisedMaximumValue + 1) / 166
166 maximumValue = 1
173 hash += encode83(encodeAC(factor, maximumValue: maximumValue), length: 2)
224 private func encodeAC(_ value: (Float, Float, Float), maximumValue: Float) -> Int {
250 private func decodeAC(_ value: Int, maximumValue: Float) -> (Float, Float, Float) { in decodeAC()
256 signPow((Float(quantR) - 9) / 9, 2) * maximumValue, in decodeAC()
257 signPow((Float(quantG) - 9) / 9, 2) * maximumValue, in decodeAC()
[all …]
/expo/ios/versioned/sdk49/ExpoImage/
H A DBlurhash.swift21 let maximumValue = Float(quantisedMaximumValue + 1) / 166 in image() variable
33 return decodeAC(value, maximumValue: maximumValue * punch) in image()
159 let maximumValue: Float variable
163 maximumValue = Float(quantisedMaximumValue + 1) / 166
166 maximumValue = 1
173 hash += encode83(encodeAC(factor, maximumValue: maximumValue), length: 2)
224 private func encodeAC(_ value: (Float, Float, Float), maximumValue: Float) -> Int {
250 private func decodeAC(_ value: Int, maximumValue: Float) -> (Float, Float, Float) { in decodeAC()
256 signPow((Float(quantR) - 9) / 9, 2) * maximumValue, in decodeAC()
257 signPow((Float(quantG) - 9) / 9, 2) * maximumValue, in decodeAC()
[all …]
/expo/ios/versioned/sdk48/ExpoImage/
H A DBlurhash.swift21 let maximumValue = Float(quantisedMaximumValue + 1) / 166 in image() variable
33 return decodeAC(value, maximumValue: maximumValue * punch) in image()
159 let maximumValue: Float variable
163 maximumValue = Float(quantisedMaximumValue + 1) / 166
166 maximumValue = 1
173 hash += encode83(encodeAC(factor, maximumValue: maximumValue), length: 2)
224 private func encodeAC(_ value: (Float, Float, Float), maximumValue: Float) -> Int {
250 private func decodeAC(_ value: Int, maximumValue: Float) -> (Float, Float, Float) { in decodeAC()
256 signPow((Float(quantR) - 9) / 9, 2) * maximumValue, in decodeAC()
257 signPow((Float(quantG) - 9) / 9, 2) * maximumValue, in decodeAC()
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/Components/__tests__/__snapshots__/
H A DSlider-test.js.snap7 maximumValue={1}
27 maximumValue={1}
52 maximumValue={1}
77 maximumValue={1}
102 maximumValue={1}
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/Components/__tests__/__snapshots__/
H A DSlider-test.js.snap7 maximumValue={1}
27 maximumValue={1}
52 maximumValue={1}
77 maximumValue={1}
102 maximumValue={1}
/expo/packages/expo-image/src/utils/blurhash/
H A Ddecode.ts44 const decodeAC = (value: number, maximumValue: number) => {
50 signPow((quantR - 9) / 9, 2.0) * maximumValue,
51 signPow((quantG - 9) / 9, 2.0) * maximumValue,
52 signPow((quantB - 9) / 9, 2.0) * maximumValue,
68 const maximumValue = (quantisedMaximumValue + 1) / 166; constant
78 colors[i] = decodeAC(value, maximumValue * punch);
/expo/packages/expo-image/build/utils/blurhash/
H A Ddecode.js34 const decodeAC = (value, maximumValue) => { argument
39 signPow((quantR - 9) / 9, 2.0) * maximumValue,
40 signPow((quantG - 9) / 9, 2.0) * maximumValue,
41 signPow((quantB - 9) / 9, 2.0) * maximumValue,
52 const maximumValue = (quantisedMaximumValue + 1) / 166; constant
61 colors[i] = decodeAC(value, maximumValue * punch);
H A Ddecode.js.map1maximumValue: number) => {\n const quantR = Math.floor(value / (19 * 19));\n const quantG = Math…
/expo/ios/vendored/sdk47/@react-native-community/slider/ios/
H A DABI47_0_0RNCSlider.m40 …lf.accessibilityIncrements && [self.accessibilityIncrements count] - 1 == (int)self.maximumValue) {
60 - (void)setMaximumValue:(float)maximumValue
62 super.maximumValue = maximumValue;
137 if (self.step > 0 && value >= self.maximumValue) {
138 return self.maximumValue;
141 if (self.step > 0 && self.step <= (self.maximumValue - self.minimumValue)) {
153 …MIN(self.maximumValue, self.minimumValue + _round((value - self.minimumValue) / self.step) * self.…
H A DABI47_0_0RNCSliderManager.m59 float rangeWidth = slider.maximumValue - slider.minimumValue;
146 ABI47_0_0RCT_EXPORT_VIEW_PROPERTY(maximumValue, float); category
/expo/ios/vendored/sdk48/@react-native-community/slider/ios/
H A DABI48_0_0RNCSlider.m40 …lf.accessibilityIncrements && [self.accessibilityIncrements count] - 1 == (int)self.maximumValue) {
60 - (void)setMaximumValue:(float)maximumValue
62 super.maximumValue = maximumValue;
143 if (self.step > 0 && value >= self.maximumValue) {
144 return self.maximumValue;
147 if (self.step > 0 && self.step <= (self.maximumValue - self.minimumValue)) {
159 …MIN(self.maximumValue, self.minimumValue + _round((value - self.minimumValue) / self.step) * self.…
H A DABI48_0_0RNCSliderComponentView.mm79 float rangeWidth = slider.maximumValue - slider.minimumValue;
170 if (oldScreenProps.maximumValue != newScreenProps.maximumValue) {
171 [slider setMaximumValue:newScreenProps.maximumValue];
/expo/ios/vendored/sdk49/@react-native-community/slider/ios/
H A DABI49_0_0RNCSlider.m40 …lf.accessibilityIncrements && [self.accessibilityIncrements count] - 1 == (int)self.maximumValue) {
60 - (void)setMaximumValue:(float)maximumValue
62 super.maximumValue = maximumValue;
143 if (self.step > 0 && value >= self.maximumValue) {
144 return self.maximumValue;
147 if (self.step > 0 && self.step <= (self.maximumValue - self.minimumValue)) {
159 …MIN(self.maximumValue, self.minimumValue + _round((value - self.minimumValue) / self.step) * self.…
H A DABI49_0_0RNCSliderComponentView.mm79 float rangeWidth = slider.maximumValue - slider.minimumValue;
170 if (oldScreenProps.maximumValue != newScreenProps.maximumValue) {
171 [slider setMaximumValue:newScreenProps.maximumValue];
/expo/ios/vendored/unversioned/@react-native-community/slider/ios/
H A DRNCSlider.m40 …lf.accessibilityIncrements && [self.accessibilityIncrements count] - 1 == (int)self.maximumValue) {
60 - (void)setMaximumValue:(float)maximumValue
62 super.maximumValue = maximumValue;
143 if (self.step > 0 && value >= self.maximumValue) {
144 return self.maximumValue;
147 if (self.step > 0 && self.step <= (self.maximumValue - self.minimumValue)) {
159 …MIN(self.maximumValue, self.minimumValue + _round((value - self.minimumValue) / self.step) * self.…
H A DRNCSliderComponentView.mm79 float rangeWidth = slider.maximumValue - slider.minimumValue;
170 if (oldScreenProps.maximumValue != newScreenProps.maximumValue) {
171 [slider setMaximumValue:newScreenProps.maximumValue];
H A DRNCSliderManager.m59 float rangeWidth = slider.maximumValue - slider.minimumValue;
154 RCT_EXPORT_VIEW_PROPERTY(maximumValue, float); category
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Views/
H A DABI48_0_0RCTSlider.m26 - (void)setMaximumValue:(float)maximumValue
28 super.maximumValue = maximumValue;
H A DABI48_0_0RCTSliderManager.m32 if (sender.step > 0 && sender.step <= (sender.maximumValue - sender.minimumValue)) {
35 MIN(sender.maximumValue,
74 ABI48_0_0RCT_EXPORT_VIEW_PROPERTY(maximumValue, float); category
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Views/
H A DABI47_0_0RCTSlider.m26 - (void)setMaximumValue:(float)maximumValue
28 super.maximumValue = maximumValue;
H A DABI47_0_0RCTSliderManager.m32 if (sender.step > 0 && sender.step <= (sender.maximumValue - sender.minimumValue)) {
35 MIN(sender.maximumValue,
74 ABI47_0_0RCT_EXPORT_VIEW_PROPERTY(maximumValue, float); category
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Fabric/Mounting/ComponentViews/Slider/
H A DABI47_0_0RCTSliderComponentView.mm118 // `maximumValue`
119 if (oldSliderProps.maximumValue != newSliderProps.maximumValue) {
120 _sliderView.maximumValue = (float)newSliderProps.maximumValue;
303 if (props.step > 0 && props.step <= (props.maximumValue - props.minimumValue)) {
307 …props.maximumValue, props.minimumValue + round((value - props.minimumValue) / props.step) * props.…
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Fabric/Mounting/ComponentViews/Slider/
H A DABI48_0_0RCTSliderComponentView.mm118 // `maximumValue`
119 if (oldSliderProps.maximumValue != newSliderProps.maximumValue) {
120 _sliderView.maximumValue = (float)newSliderProps.maximumValue;
303 if (props.step > 0 && props.step <= (props.maximumValue - props.minimumValue)) {
307 …props.maximumValue, props.minimumValue + round((value - props.minimumValue) / props.step) * props.…
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/Components/Slider/
H A DSlider.d.ts67 maximumValue?: number | undefined; property
/expo/apps/native-component-list/src/screens/BlurView/
H A DSlider.tsx22 maximumValue={100}

12