Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 322) sorted by relevance

12345678910>>...13

/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/blast/
A Dblast.c84 s->left--; in bits()
168 s->left--; in decode()
169 if (left > 8) left = 8; in decode()
241 return left; in construct()
392 if (left != NULL && *left) { in blast()
393 s.left = *left; in blast()
415 *left = s.left; in blast()
449 unsigned left; in main() local
452 left = 0; in main()
459 left++; in main()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/examples/
A Denough.c213 if (syms == left) in count()
217 assert(syms > left && left > 0 && len < max); in count()
227 least = (left << 1) - syms; in count()
329 if (syms == left) { in examine()
331 code[len] = left; in examine()
334 while (rem < left) { in examine()
335 left -= rem; in examine()
339 assert(rem == left); in examine()
363 least = (left << 1) - syms; in examine()
417 for (left = 2; left < n; left += 2) in enough()
[all …]
A Dgzjoin.c113 in->left = 0; in bopen()
127 if (in->left != 0) in bload()
131 len = (long)read(in->fd, in->buf + in->left, CHUNK - in->left); in bload()
141 in->left ? (in->left--, *(in->next)++) : \
171 skip -= in->left; in bskip()
172 in->left = 0; in bskip()
176 unsigned left; in bskip() local
190 skip = left; in bskip()
197 in->left -= skip; in bskip()
256 if (in->left == 0) in zpull()
[all …]
A Dgzappend.c186 in->left = (unsigned)len; in readin()
206 if (n > in->left) { in skip()
207 n -= in->left; in skip()
215 if (n > in->left) in skip()
218 in->left -= n; in skip()
275 gz.left = 0; in gzscan()
292 left = 0; in gzscan()
373 if (left) { in gzscan()
391 unsigned left; in gztack() local
428 while (left) { in gztack()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/
A Dpicture_rescale_enc.c42 *left &= ~1; in SnapTopLeftPosition()
51 SnapTopLeftPosition(pic, left, top); in AdjustAndCheckRectangle()
52 if ((*left) < 0 || (*top) < 0) return 0; in AdjustAndCheckRectangle()
54 if ((*left) + width > pic->width) return 0; in AdjustAndCheckRectangle()
107 dst->y = src->y + top * src->y_stride + left; in WebPPictureView()
113 dst->a = src->a + top * src->a_stride + left; in WebPPictureView()
117 dst->argb = src->argb + top * src->argb_stride + left; in WebPPictureView()
139 const int y_offset = top * pic->y_stride + left; in WebPPictureCrop()
149 const int a_offset = top * pic->a_stride + left; in WebPPictureCrop()
285 (void)left; in WebPPictureView()
[all …]
/AliOS-Things-master/documentation/doxygen/style/
A Ddoxygen-custom.css128 padding-left: 6px;
134 padding-left: 6px;
250 text-align: left;
627 float:left;
1063 left: 10px;
1089 float:left;
1633 left: 50%;
1641 left: 14px;
1663 left: 50%;
1671 left: 14px;
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/
A Duncompr.c36 uLong len, left; local
41 left = *destLen;
45 left = 1;
63 stream.avail_out = left > (uLong)max ? max : (uInt)left;
64 left -= stream.avail_out;
77 left = 1;
82 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR :
A Dinftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
268 left = (int)(1 << curr);
270 left -= count[curr + drop];
271 if (left <= 0) break;
273 left <<= 1;
A Dinfback.c131 left = strm->avail_out; \
142 strm->avail_out = left; \
212 if (left == 0) { \
214 left = state->wsize; \
215 state->whave = left; \
287 left = state->wsize;
346 if (copy > left) copy = left;
350 left -= copy;
518 left--;
595 copy = left;
[all …]
/AliOS-Things-master/solutions/miniapp_agent_demo/
A DREADME.md29 <div align=left display=flex>
59 <div align=left display=flex>
67 <div align=left display=flex>
75 <div align=left display=flex>
82 <div align=left display=flex>
90 <div align=left display=flex>
96 <div align=left display=flex>
113 <div align=left display=flex>
119 <div align=left display=flex>
124 <div align=left display=flex>
[all …]
/AliOS-Things-master/components/linkkit/iot_coap/CoAPPacket/
A DCoAPDeserialize_common.c53 int left, unsigned short *predeltas) in CoAPDeserialize_Option() argument
63 COAP_OPT_CHECK(ptr, left, 1); in CoAPDeserialize_Option()
67 COAP_OPT_CHECK(ptr, left, 1); in CoAPDeserialize_Option()
73 COAP_OPT_CHECK(ptr, left, 2); in CoAPDeserialize_Option()
81 COAP_OPT_CHECK(ptr, left, 1); in CoAPDeserialize_Option()
88 COAP_OPT_CHECK(ptr, left, 2); in CoAPDeserialize_Option()
104 int left = buflen; in CoAPDeserialize_Options() local
108 while (left > 0 && (0xFF != *ptr) && index < COAP_MSG_MAX_OPTION_NUM) { in CoAPDeserialize_Options()
110 CoAPDeserialize_Option(&msg->options[index], ptr, left, &optdeltas); in CoAPDeserialize_Options()
116 left -= len; in CoAPDeserialize_Options()
/AliOS-Things-master/documentation/debug-tools/
A DSmartTrace.md21 <div align=left display=flex>
29 <div align=left display=flex>
36 <div align=left display=flex>
43 <div align=left display=flex>
50 <div align=left display=flex>
58 <div align=left display=flex>
68 <div align=left display=flex>
76 <div align=left display=flex>
82 <div align=left display=flex>
95 <div align=left display=flex>
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Dlossless_mips_dsp_r2.c192 return Average3(left, top[0], top[1]); in Predictor5_MIPSdspR2()
196 return Average2(left, top[-1]); in Predictor6_MIPSdspR2()
200 return Average2(left, top[0]); in Predictor7_MIPSdspR2()
204 (void)left; in Predictor8_MIPSdspR2()
209 (void)left; in Predictor9_MIPSdspR2()
213 static uint32_t Predictor10_MIPSdspR2(uint32_t left, in Predictor10_MIPSdspR2() argument
215 return Average4(left, top[-1], top[0], top[1]); in Predictor10_MIPSdspR2()
218 static uint32_t Predictor11_MIPSdspR2(uint32_t left, in Predictor11_MIPSdspR2() argument
220 return Select(top[0], left, top[-1]); in Predictor11_MIPSdspR2()
223 static uint32_t Predictor12_MIPSdspR2(uint32_t left, in Predictor12_MIPSdspR2() argument
[all …]
A Dlossless.c112 (void)left; in Predictor0_C()
117 return left; in Predictor1_C()
120 (void)left; in Predictor2_C()
124 (void)left; in Predictor3_C()
128 (void)left; in Predictor4_C()
136 const uint32_t pred = Average2(left, top[-1]); in Predictor6_C()
140 const uint32_t pred = Average2(left, top[0]); in Predictor7_C()
145 (void)left; in Predictor8_C()
150 (void)left; in Predictor9_C()
174 uint32_t left = out[-1]; in GENERATE_PREDICTOR_ADD() local
[all …]
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_string.c271 size_t left; in SDL_memset()
294 left = (len % 4); in SDL_memset()
301 switch (left) { in SDL_memset()
1571 text += (left > 1) ? left - 1 : 0; in SDL_PrintFloat()
1572 left = SDL_min(left, 1); in SDL_PrintFloat()
1592 text += (left > 1) ? left - 1 : 0; in SDL_PrintFloat()
1593 left = SDL_min(left, 1); in SDL_PrintFloat()
1629 text += (left > 1) ? left - 1 : 0; in SDL_PrintFloat()
1630 left = SDL_min(left, 1); in SDL_PrintFloat()
1837 text += (left > 1) ? left - 1 : 0; in SDL_vsnprintf()
[all …]
/AliOS-Things-master/components/linkkit/wifi_provision/frameworks/ieee80211/
A Dzconfig_ieee80211.c465 int left, count; in cfg80211_parse_wpa_info() local
479 left = wpa_ie_len - 8; in cfg80211_parse_wpa_info()
487 } else if (left > 0) { in cfg80211_parse_wpa_info()
492 if (left >= 2) { in cfg80211_parse_wpa_info()
496 left -= 2; in cfg80211_parse_wpa_info()
513 if (left >= 6) { in cfg80211_parse_wpa_info()
529 int left, count; in cfg80211_parse_wpa2_info() local
543 left = rsn_ie_len - 4; in cfg80211_parse_wpa2_info()
556 if (left >= 2) { in cfg80211_parse_wpa2_info()
560 left -= 2; in cfg80211_parse_wpa2_info()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/infback9/
A Dinftree9.c46 int left; /* number of prefix codes available */ local
125 left = 1;
127 left <<= 1;
128 left -= count[len];
129 if (left < 0) return -1; /* over-subscribed */
131 if (left > 0 && (type == CODES || max != 1))
263 left = (int)(1 << curr);
265 left -= count[curr + drop];
266 if (left <= 0) break;
268 left <<= 1;
/AliOS-Things-master/components/py_engine/external/unzip/src/
A Dinftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
270 left = (int)(1 << curr);
272 left -= count[curr + drop];
273 if (left <= 0) break;
275 left <<= 1;
A Dinfback.c122 left = strm->avail_out; \
133 strm->avail_out = left; \
203 if (left == 0) { \
205 left = state->wsize; \
206 state->whave = left; \
278 left = state->wsize;
337 if (copy > left) copy = left;
341 left -= copy;
510 left--;
587 copy = left;
[all …]
/AliOS-Things-master/components/SDL2/test/
A Dcheckkeys.c96 size_t left; in PrintModifierState() local
99 left = sizeof(message); in PrintModifierState()
101 print_modifiers(&spot, &left); in PrintModifierState()
110 size_t left; in PrintKey() local
113 left = sizeof(message); in PrintKey()
117 print_string(&spot, &left, in PrintKey()
124 print_string(&spot, &left, in PrintKey()
130 print_modifiers(&spot, &left); in PrintKey()
132 print_string(&spot, &left, " (repeat)"); in PrintKey()
/AliOS-Things-master/components/mbedtls/library/
A Dmd2.c109 ctx->left = 0; in mbedtls_md2_starts_ret()
178 if( ilen > 16 - ctx->left ) in mbedtls_md2_update_ret()
179 fill = 16 - ctx->left; in mbedtls_md2_update_ret()
183 memcpy( ctx->buffer + ctx->left, input, fill ); in mbedtls_md2_update_ret()
185 ctx->left += fill; in mbedtls_md2_update_ret()
189 if( ctx->left == 16 ) in mbedtls_md2_update_ret()
191 ctx->left = 0; in mbedtls_md2_update_ret()
219 x = (unsigned char)( 16 - ctx->left ); in mbedtls_md2_finish_ret()
221 for( i = ctx->left; i < 16; i++ ) in mbedtls_md2_finish_ret()
/AliOS-Things-master/solutions/flower_demo/
A DREADME.md10 <div align=left display=flex>
19 <div align=left display=flex>
24 <div align=left display=flex>
31 <div align=left display=flex>
39 <div align=left display=flex>
47 <div align=left display=flex>
60 <div align=left display=flex>
66 <div align=left display=flex>
78 <div align=left display=flex>
99 <div align=left display=flex>
[all …]
/AliOS-Things-master/components/py_engine/tests/wipy/
A Drtc.py70 left = rtc.alarm_left() variable
71 print(abs(left - 1000) <= 10)
79 left = rtc.alarm_left() variable
80 print(abs(left - 500) <= 15)
85 left = rtc.alarm_left() variable
86 print(abs(left - 44000) <= 90)
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/ocr/include/alibabacloud/ocr/model/
A DRecognizeAccountPageResult.h39 int left; member
46 int left; member
53 int left; member
60 int left; member
67 int left; member
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/source/
A Decc_platform_specific.c89 size_t left = (size_t) size; in default_CSPRNG() local
90 while (left > 0) { in default_CSPRNG()
91 ssize_t bytes_read = read(fd, ptr, left); in default_CSPRNG()
96 left -= bytes_read; in default_CSPRNG()

Completed in 55 milliseconds

12345678910>>...13