Home
last modified time | relevance | path

Searched refs:mb (Results 1 – 24 of 24) sorted by relevance

/AliOS-Things-master/components/lwip/lwip2.0.0/port/
A Dsys_arch.c175 *mb = mbox; in sys_mbox_new()
187 if ((mb != NULL) && (*mb != SYS_MBOX_NULL)) { in sys_mbox_free()
210 LWIP_ASSERT("invalid mbox", (mb != NULL) && (*mb != NULL)); in sys_mbox_post()
211 mbox = *mb; in sys_mbox_post()
251 LWIP_ASSERT("invalid mbox", (mb != NULL) && (*mb != NULL)); in sys_mbox_trypost()
252 mbox = *mb; in sys_mbox_trypost()
303 mbox = *mb; in sys_arch_mbox_fetch()
354 LWIP_ASSERT("invalid mbox", (mb != NULL) && (*mb != NULL)); in sys_arch_mbox_tryfetch()
355 mbox = *mb; in sys_arch_mbox_tryfetch()
421 if ((mb != NULL)) { in sys_mbox_free()
[all …]
/AliOS-Things-master/components/ble_host/bt_host/port/core/
A Dmbox.c51 *mb = mbox; in k_mbox_new()
64 if (mb != NULL) { in k_mbox_free()
65 k_mbox_t *mbox = mb; in k_mbox_free()
88 if (NULL == mb) { in k_mbox_post()
93 mbox = mb; in k_mbox_post()
134 if (NULL == mb) { in k_mbox_trypost()
139 mbox = mb; in k_mbox_trypost()
189 if (NULL == mb) { in k_mbox_fetch()
194 mbox = mb; in k_mbox_fetch()
249 if (NULL == mb) { in k_mbox_tryfetch()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/
A Dtif_dirread.c1001 mb=data; in TIFFReadDirEntryByteArray()
1019 mb=data; in TIFFReadDirEntryByteArray()
1037 mb=data; in TIFFReadDirEntryByteArray()
3579 for (ma=dir, mb=0; mb<dircount; ma++, mb++) in TIFFReadDirectory()
4345 ma=mb; in TIFFReadDirectoryFindFieldInfo()
4347 mc=mb; in TIFFReadDirectoryFindFieldInfo()
4355 mb--; in TIFFReadDirectoryFindFieldInfo()
4357 *fii=mb; in TIFFReadDirectoryFindFieldInfo()
4876 mb=dir; in TIFFFetchDirectory()
4905 mb++; in TIFFFetchDirectory()
[all …]
A Dtif_win32.c67 uint64 mb; in _tiffReadProc() local
72 mb=size; in _tiffReadProc()
74 while (mb>0) in _tiffReadProc()
77 if ((uint64)n>mb) in _tiffReadProc()
78 n=(DWORD)mb; in _tiffReadProc()
82 mb-=o; in _tiffReadProc()
97 uint64 mb; in _tiffWriteProc() local
102 mb=size; in _tiffWriteProc()
104 while (mb>0) in _tiffWriteProc()
108 n=(DWORD)mb; in _tiffWriteProc()
[all …]
A Dtif_read.c638 tmsize_t mb=ma+size; in TIFFReadRawStrip1() local
639 if (mb>tif->tif_size) in TIFFReadRawStrip1()
1131 tmsize_t ma,mb; in TIFFReadRawTile1() local
1134 mb=ma+size; in TIFFReadRawTile1()
1137 else if ((mb<ma)||(mb<size)||(mb>tif->tif_size)) in TIFFReadRawTile1()
A Dtif_dirwrite.c1678 uint32 mb; in TIFFWriteDirectoryTagLongLong8Array() local
1707 for (q=p, ma=value, mb=0; mb<count; ma++, mb++, q++) in TIFFWriteDirectoryTagLongLong8Array()
1736 uint32 mb; in TIFFWriteDirectoryTagIfdIfd8Array() local
1765 for (q=p, ma=value, mb=0; mb<count; ma++, mb++, q++) in TIFFWriteDirectoryTagIfdIfd8Array()
1789 uint32 mb; in TIFFWriteDirectoryTagShortLongLong8Array() local
1798 for (ma=value, mb=0; mb<count; ma++, mb++) in TIFFWriteDirectoryTagShortLongLong8Array()
1818 for (ma=value, mb=0, q=p; mb<count; ma++, mb++, q++) in TIFFWriteDirectoryTagShortLongLong8Array()
1833 for (ma=value, mb=0, q=p; mb<count; ma++, mb++, q++) in TIFFWriteDirectoryTagShortLongLong8Array()
A Dtif_dir.c560 char* mb; in _TIFFVSetField() local
565 mb=(char*)va_arg(ap,char*); in _TIFFVSetField()
569 mb=(char*)va_arg(ap,char*); in _TIFFVSetField()
570 ma=(uint32)(strlen(mb)+1); in _TIFFVSetField()
573 setByteArray(&tv->value,mb,ma,1); in _TIFFVSetField()
A Dtif_ojpeg.c530 uint64* mb; in OJPEGVSetField() local
559 mb=(uint64*)va_arg(ap,uint64*); in OJPEGVSetField()
561 sp->qtable_offset[n]=mb[n]; in OJPEGVSetField()
574 mb=(uint64*)va_arg(ap,uint64*); in OJPEGVSetField()
576 sp->dctable_offset[n]=mb[n]; in OJPEGVSetField()
589 mb=(uint64*)va_arg(ap,uint64*); in OJPEGVSetField()
591 sp->actable_offset[n]=mb[n]; in OJPEGVSetField()
A Dtif_jpeg.c969 uint8 mb; in JPEGFixupTagsSubsamplingReadWord() local
972 if (!JPEGFixupTagsSubsamplingReadByte(data,&mb)) in JPEGFixupTagsSubsamplingReadWord()
974 *result=(ma<<8)|mb; in JPEGFixupTagsSubsamplingReadWord()
/AliOS-Things-master/components/ble_host/bt_host/port/include/port/
A Dmbox.h39 int k_mbox_new(k_mbox_t **mb, int size);
40 void k_mbox_free(k_mbox_t *mb);
41 void k_mbox_post(k_mbox_t *mb, void *msg);
42 int k_mbox_trypost(k_mbox_t *mb, void *msg);
43 int k_mbox_fetch(k_mbox_t *mb, void **msg, uint32_t timeout);
44 int k_mbox_tryfetch(k_mbox_t *mb, void **msg);
/AliOS-Things-master/solutions/relay_demo/
A Dhelloworld.c20 static void test_bsm0404rb(mb_handler_t *mb, uint8_t addr, bool out) in test_bsm0404rb() argument
24 if (!mb) in test_bsm0404rb()
33 status = mbmaster_write_single_coil(mb, addr, coil_addr, in test_bsm0404rb()
56 mb_handler_t *mb; in application_start() local
61 status = mbmaster_rtu_init(&mb, 1, 9600, MB_PAR_NONE, 200); in application_start()
64 mb = NULL; in application_start()
72 test_bsm0404rb(mb, 1, out); in application_start()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/
A Danalysis_enc.c41 int majority_seg = mb->segment_; in SmoothSegmentMap()
44 cnt[mb[-w + 0].segment_]++; // top in SmoothSegmentMap()
46 cnt[mb[ - 1].segment_]++; // left in SmoothSegmentMap()
47 cnt[mb[ + 1].segment_]++; // right in SmoothSegmentMap()
63 mb->segment_ = tmp[x + y * w]; in SmoothSegmentMap()
215 const int alpha = mb->alpha_; in AssignSegments()
216 mb->segment_ = map[alpha]; in AssignSegments()
396 mb->type_ = 1; // I16x16 in DefaultMBInfo()
397 mb->uv_mode_ = 0; in DefaultMBInfo()
398 mb->skip_ = 0; // not skipped in DefaultMBInfo()
[all …]
A Dtree_enc.c318 const VP8MBInfo* const mb = it.mb_; in VP8CodeIntraModes() local
321 PutSegment(bw, mb->segment_, enc->proba_.segments_); in VP8CodeIntraModes()
324 VP8PutBit(bw, mb->skip_, enc->proba_.skip_proba_); in VP8CodeIntraModes()
326 if (VP8PutBit(bw, (mb->type_ != 0), 145)) { // i16x16 in VP8CodeIntraModes()
342 PutUVMode(bw, mb->uv_mode_); in VP8CodeIntraModes()
A Dframe_enc.c200 const VP8MBInfo* const mb = &enc->mb_info_[n]; in SetSegmentProbas() local
201 ++p[mb->segment_]; in SetSegmentProbas()
490 const VP8MBInfo* const mb = it->mb_; in StoreSideInfo() local
495 enc->block_count_[0] += (mb->type_ == 0); in StoreSideInfo()
496 enc->block_count_[1] += (mb->type_ == 1); in StoreSideInfo()
497 enc->block_count_[2] += (mb->skip_ != 0); in StoreSideInfo()
503 case 1: *info = mb->type_; break; in StoreSideInfo()
504 case 2: *info = mb->segment_; break; in StoreSideInfo()
507 case 5: *info = mb->uv_mode_; break; in StoreSideInfo()
512 case 7: *info = mb->alpha_; break; in StoreSideInfo()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/
A Dvp8_dec.c511 VP8MB* const mb, VP8BitReader* const token_br) { in ParseResiduals() argument
528 const int ctx = mb->nz_dc_ + left_mb->nz_dc_; in ParseResiduals()
530 mb->nz_dc_ = left_mb->nz_dc_ = (nz > 0); in ParseResiduals()
545 tnz = mb->nz_ & 0x0f; in ParseResiduals()
567 tnz = mb->nz_ >> (4 + ch); in ParseResiduals()
587 mb->nz_ = out_t_nz; in ParseResiduals()
606 VP8MB* const mb = dec->mb_info_ + dec->mb_x_; in VP8DecodeMB() local
611 skip = ParseResiduals(dec, mb, token_br); in VP8DecodeMB()
613 left->nz_ = mb->nz_ = 0; in VP8DecodeMB()
615 left->nz_dc_ = mb->nz_dc_ = 0; in VP8DecodeMB()
/AliOS-Things-master/solutions/eduk1_demo/k1_apps/barometer/
A Dbarometer.md280 sp->pressure = pcomp / 100; // convert to mb
/AliOS-Things-master/components/SDL2/src/gfx/Test/
A Dconfig.sub276 | maxq | mb | microblaze | mcore | mep | metag \
/AliOS-Things-master/components/SDL2/src/gfx/
A Dconfig.sub276 | maxq | mb | microblaze | mcore | mep | metag \
/AliOS-Things-master/components/SDL2/build-scripts/
A Dconfig.sub272 | maxq | mb | microblaze | microblazeel | mcore | mep | metag \
/AliOS-Things-master/components/SDL2/src/image/
A Dconfig.sub269 | maxq | mb | microblaze | microblazeel | mcore | mep | metag \
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dconfig.sub272 | maxq | mb | microblaze | microblazeel | mcore | mep | metag \
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/
A Dconfig.sub269 | maxq | mb | microblaze | microblazeel | mcore | mep | metag \
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/config/
A Dconfig.sub253 | maxq | mb | microblaze | mcore | mep \
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/
A Drgb-3c-8b.ppm178 )��mb"��@��?��S��]��R��N��N��N��O��Q��R��L��L��M��P��U��^��`��n��~��T��P��S��M��H|�@kW1R3��G dn7…
253 …�r;�|@�l;vU0oN,rV/vb7ut>yBz}Ez�Ew~>un7qk6q`,rj1ww9|�B{�I}�G�G{�Dxh9vW0oV,mb/jr3in3eu6h�8i}6m�>o�…

Completed in 56 milliseconds