Home
last modified time | relevance | path

Searched refs:range (Results 1 – 25 of 86) sorted by relevance

1234

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_writer.h24 unsigned int range; member
41 unsigned int range = br->range; in vp9_write() local
45 split = 1 + (((range - 1) * probability) >> 8); in vp9_write()
47 range = split; in vp9_write()
51 range = br->range - split; in vp9_write()
54 shift = vp9_norm[range]; in vp9_write()
56 range <<= shift; in vp9_write()
83 br->range = range; in vp9_write()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dboolhuff.h32 unsigned int range; member
70 unsigned int range = br->range; in vp8_encode_bool() local
85 split = 1 + (((range - 1) * probability) >> 8); in vp8_encode_bool()
87 range = split; in vp8_encode_bool()
92 range = br->range - split; in vp8_encode_bool()
95 shift = vp8_norm[range]; in vp8_encode_bool()
97 range <<= shift; in vp8_encode_bool()
129 br->range = range; in vp8_encode_bool()
Dbitstream.c169 unsigned int range = w->range; in vp8_pack_tokens_c() local
191 split = 1 + (((range - 1) * pp[i>>1]) >> 8); in vp8_pack_tokens_c()
197 range = range - split; in vp8_pack_tokens_c()
201 range = split; in vp8_pack_tokens_c()
204 shift = vp8_norm[range]; in vp8_pack_tokens_c()
205 range <<= shift; in vp8_pack_tokens_c()
256 split = 1 + (((range - 1) * proba[i>>1]) >> 8); in vp8_pack_tokens_c()
262 range = range - split; in vp8_pack_tokens_c()
266 range = split; in vp8_pack_tokens_c()
269 shift = vp8_norm[range]; in vp8_pack_tokens_c()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
Ddboolhuff.h47 unsigned int range; member
69 unsigned int range; in vp8dx_decode_bool() local
71 split = 1 + (((br->range - 1) * probability) >> 8); in vp8dx_decode_bool()
81 range = split; in vp8dx_decode_bool()
85 range = br->range - split; in vp8dx_decode_bool()
91 register unsigned int shift = vp8_norm[range]; in vp8dx_decode_bool()
92 range <<= shift; in vp8dx_decode_bool()
98 br->range = range; in vp8dx_decode_bool()
Ddetokenize.c61 int split = (br->range + 1) >> 1; in GetSigned()
70 br->range = split; in GetSigned()
75 br->range = br->range-split; in GetSigned()
79 br->range +=br->range; in GetSigned()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
Dvp9_reader.h36 unsigned int range; member
52 unsigned int range; in vp9_read() local
53 unsigned int split = (r->range * prob + (256 - prob)) >> CHAR_BIT; in vp9_read()
63 range = split; in vp9_read()
66 range = r->range - split; in vp9_read()
72 register unsigned int shift = vp9_norm[range]; in vp9_read()
73 range <<= shift; in vp9_read()
79 r->range = range; in vp9_read()
/hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
Dand_constructor.h24 #define RANGE_FLOAT_TO_FIXEDPOINT(range, x) { \ argument
25 range.mantissa = (long)x; \
26 range.fraction = (long)((float)(x-(long)x)*PRECISION); \
28 #define RANGE_FIXEDPOINT_TO_FLOAT(range, x) { \ argument
29 x = (float)(range.mantissa); \
30 x += ((float)range.fraction/PRECISION); \
/hardware/bsp/intel/peripheral/libupm/examples/python/
Dldt0028.py38 for i in range(0, NUMBER_OF_SECONDS * SAMPLES_PER_SECOND):
44 for i in range(0, NUMBER_OF_SECONDS * SAMPLES_PER_SECOND):
57 for i in range(0, NUMBER_OF_SECONDS):
59 for j in range(0, SAMPLES_PER_SECOND):
Dmake_oled_pic.py46 byteblock = [0 for i in range(width)]
47 widthblock = [list(byteblock) for i in range(int(height/8))]
53 datachunks=[data[x:x+(width*8)] for x in range(0, len(data), (width*8))]
Dcjq4435.py36 for i in range(11):
43 for i in range(10, -1, -1):
Doled_ssd1327.py177 for x in range(len(logoArr)):
184 for i in range(12):
Dpn532.py70 for i in range(7):
77 for i in range(uidSize.__getitem__(0)):
Dpn532-writeurl.py75 for i in range(7):
82 for i in range(uidSize.__getitem__(0)):
Dgroveled.py34 for i in range (0,10):
Dgrovetemp.py33 for i in range(0, 10):
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/armv5te/
Dboolhuff_armv5te.asm68 sub r7, r5, #1 ; range-1
71 mul r6, r4, r7 ; ((range-1) * probability)
74 add r4, r7, r6, lsr #8 ; 1 + (((range-1) * probability) >> 8)
77 subne r4, r5, r4 ; if (bit) range = range-split
79 ; Counting the leading zeros is used to normalize range.
86 lsl r5, r4, r6 ; range <<= shift
148 sub r7, r5, #1 ; range-1
150 mov r4, r7, lsl #7 ; ((range-1) * 128)
153 add r4, r7, r4, lsr #8 ; 1 + (((range-1) * 128) >> 8)
155 ; Counting the leading zeros is used to normalize range.
[all …]
Dvp8_packtokens_armv5.asm85 sub r7, r5, #1 ; range-1
91 mul r6, r4, r7 ; ((range-1) * pp[i>>1]))
99 add r4, r7, r6, lsr #8 ; 1 + (((range-1) * pp[i>>1]) >> 8)
102 subcs r4, r5, r4 ; if (bb) range = range-split
104 ; Counting the leading zeros is used to normalize range.
111 lsl r5, r4, r6 ; range <<= shift
193 sub r7, r5, #1 ; range-1
195 mul r6, r4, r7 ; (range-1) * pp[i>>1]
200 add r4, r7, r6, lsr #8 ; split = 1 + (((range-1) * pp[i>>1]) >> 8)
203 subcs r4, r5, r4 ; if (bb) range = range-split
[all …]
Dvp8_packtokens_mbrow_armv5.asm106 sub r7, r5, #1 ; range-1
112 mul r6, r4, r7 ; ((range-1) * pp[i>>1]))
120 add r4, r7, r6, lsr #8 ; 1 + (((range-1) * pp[i>>1]) >> 8)
123 subcs r4, r5, r4 ; if (bb) range = range-split
125 ; Counting the leading zeros is used to normalize range.
132 lsl r5, r4, r6 ; range <<= shift
214 sub r7, r5, #1 ; range-1
216 mul r6, r4, r7 ; (range-1) * pp[i>>1]
221 add r4, r7, r6, lsr #8 ; split = 1 + (((range-1) * pp[i>>1]) >> 8)
224 subcs r4, r5, r4 ; if (bb) range = range-split
[all …]
Dvp8_packtokens_partitions_armv5.asm135 sub r7, r5, #1 ; range-1
141 mul r6, r4, r7 ; ((range-1) * pp[i>>1]))
149 add r4, r7, r6, lsr #8 ; 1 + (((range-1) * pp[i>>1]) >> 8)
152 subcs r4, r5, r4 ; if (bb) range = range-split
154 ; Counting the leading zeros is used to normalize range.
161 lsl r5, r4, r6 ; range <<= shift
243 sub r7, r5, #1 ; range-1
245 mul r6, r4, r7 ; (range-1) * pp[i>>1]
250 add r4, r7, r6, lsr #8 ; split = 1 + (((range-1) * pp[i>>1]) >> 8)
253 subcs r4, r5, r4 ; if (bb) range = range-split
[all …]
/hardware/bsp/intel/peripheral/libmraa/examples/python/
Dspi.py34 for x in range(0,100):
36 for y in range(0,4):
/hardware/intel/img/psb_video/src/
Dvsp_VPP.c972 denoise_cap->range.min_value = MIN_VPP_PARAM; in vsp_QueryVideoProcFilterCaps()
973 denoise_cap->range.max_value = MAX_VPP_PARAM; in vsp_QueryVideoProcFilterCaps()
974 denoise_cap->range.default_value = MIN_VPP_PARAM; in vsp_QueryVideoProcFilterCaps()
975 denoise_cap->range.step = STEP_VPP_PARAM; in vsp_QueryVideoProcFilterCaps()
980 deblock_cap->range.min_value = MIN_VPP_PARAM; in vsp_QueryVideoProcFilterCaps()
981 deblock_cap->range.max_value = MAX_VPP_PARAM; in vsp_QueryVideoProcFilterCaps()
982 deblock_cap->range.default_value = MIN_VPP_PARAM; in vsp_QueryVideoProcFilterCaps()
983 deblock_cap->range.step = STEP_VPP_PARAM; in vsp_QueryVideoProcFilterCaps()
989 sharpen_cap->range.min_value = MIN_VPP_PARAM; in vsp_QueryVideoProcFilterCaps()
990 sharpen_cap->range.max_value = MAX_VPP_PARAM; in vsp_QueryVideoProcFilterCaps()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dacm_random.h49 int PseudoUniform(int range) { in PseudoUniform() argument
50 return random_.Generate(range); in PseudoUniform()
/hardware/ti/omap4xxx/test/CameraHal/
Dcamera_test.h146 const char *range; member
151 const char *range; member
157 const char *range; member
/hardware/intel/common/libva/test/videoprocess/
Dvideoprocess.cpp172 adjust_to_range(VAProcFilterValueRange *range, float value) in adjust_to_range() argument
174 if (value < range->min_value || value > range->max_value){ in adjust_to_range()
176 value, range->min_value, range->max_value, range->default_value); in adjust_to_range()
177 return range->default_value; in adjust_to_range()
479 intensity = denoise_caps.range.default_value; in denoise_filter_init()
481 intensity = adjust_to_range(&denoise_caps.range, intensity); in denoise_filter_init()
584 intensity = sharpening_caps.range.default_value; in sharpening_filter_init()
587 intensity = adjust_to_range(&sharpening_caps.range, intensity); in sharpening_filter_init()
644 value = color_balance_caps[i].range.default_value; in color_balance_filter_init()
646 value = adjust_to_range(&color_balance_caps[i].range, value); in color_balance_filter_init()
/hardware/intel/common/libva/va/
Dva_vpp.h932 VAProcFilterValueRange range; member
946 VAProcFilterValueRange range; member
954 VAProcFilterValueRange range; member

1234