Home
last modified time | relevance | path

Searched refs:tb (Results 1 – 25 of 27) sorted by relevance

12

/AliOS-Things-master/hardware/chip/haas1000/aos/
A Dmy_cpp_test.cpp79 virtual void TakeBusToSomewhere(TakeBus& tb) = 0;
85 virtual void TakeBusToSomewhere(TakeBus& tb) in TakeBusToSomewhere() argument
87 tb.TakeBusToSubway(); in TakeBusToSomewhere()
94 virtual void TakeBusToSomewhere(TakeBus& tb) in TakeBusToSomewhere() argument
96 tb.TakeBusToStation(); in TakeBusToSomewhere()
110 TakeBus tb; in cpp_polymorphic() local
122 bu->TakeBusToSomewhere(tb); in cpp_polymorphic()
/AliOS-Things-master/solutions/javascript_demo/agriculture_demo/
A Dbmp280.js112 …var tb = (((((uncomp_temp >> 4) - calibParamT1) * ((uncomp_temp >> 4) - calibParamT1)) >> 12) * ca…
113 calibParamT_FINE = ta + tb;
114 temperature = ((ta + tb) * 5 + 128) >> 8;
/AliOS-Things-master/components/mbedtls/library/
A Daria.c210 uint32_t ta, tb, tc; in aria_a() local
214 tb = ARIA_P2( *d ); // efcd in aria_a()
216 *c = ARIA_P1( tb ); // fedc in aria_a()
220 tb ^= ARIA_P2( *d ); // ba98+efcd in aria_a()
222 *b ^= ta ^ tb; // 0123+2301+5476+89ab+ba98+efcd+fedc OUT in aria_a()
223 tb = ARIA_P2( tb ) ^ ta; // 2301+5476+89ab+98ba+cdef+fedc in aria_a()
224 *a ^= ARIA_P1( tb ); // 3210+4567+6745+89ab+98ba+dcfe+efcd OUT in aria_a()
/AliOS-Things-master/components/py_engine/tests/basics/
A Dasync_with_break.py7 async def __aexit__(self, exc_type, exc, tb): argument
A Dasync_with_return.py7 async def __aexit__(self, exc_type, exc, tb): argument
A Dasync_with.py7 async def __aexit__(self, exc_type, exc, tb): argument
A Dasync_with2.py25 async def __aexit__(self, exc_type, exc, tb): argument
/AliOS-Things-master/components/SDL2/src/events/
A DSDL_gesture.c308 double tb = M_PI/4; in bestDollarDifference() local
310 float x1 = (float)(PHI*ta + (1-PHI)*tb); in bestDollarDifference()
312 float x2 = (float)((1-PHI)*ta + PHI*tb); in bestDollarDifference()
314 while (SDL_fabs(ta-tb) > dt) { in bestDollarDifference()
316 tb = x2; in bestDollarDifference()
319 x1 = (float)(PHI*ta + (1-PHI)*tb); in bestDollarDifference()
326 x2 = (float)((1-PHI)*ta + PHI*tb); in bestDollarDifference()
/AliOS-Things-master/components/py_engine/engine/extmod/uasyncio/
A Dstream.py19 async def __aexit__(self, exc_type, exc, tb): argument
100 async def __aexit__(self, exc_type, exc, tb): argument
A Dlock.py52 async def __aexit__(self, exc_type, exc, tb): argument
/AliOS-Things-master/components/freetype/src/gzip/
A Dinfblock.c249 &s->sub.trees.tb, s->hufts, z); in inflate_blocks()
271 h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]); in inflate_blocks()
306 s->sub.trees.tb = Z_NULL; in inflate_blocks()
A Dinfutil.h41 inflate_huft *tb; /* bit length decoding tree */ member
A Dinftrees.c302 inflate_huft * FAR *tb, /* bits tree result */ in inflate_trees_bits() argument
314 tb, bb, hp, &hn, v); in inflate_trees_bits()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/
A Dtif_dirinfo.c347 const TIFFField* tb = *(const TIFFField**) b; in tagCompare() local
349 if (ta->field_tag != tb->field_tag) in tagCompare()
350 return (int)ta->field_tag - (int)tb->field_tag; in tagCompare()
353 0 : ((int)tb->field_type - (int)ta->field_type); in tagCompare()
360 const TIFFField* tb = *(const TIFFField**) b; in tagNameCompare() local
361 int ret = strcmp(ta->field_name, tb->field_name); in tagNameCompare()
367 0 : ((int)tb->field_type - (int)ta->field_type); in tagNameCompare()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Dupsampling_sse41.c98 #define UPSAMPLE_LAST_BLOCK(tb, bb, num_pixels, out) { \ argument
100 memcpy(r1, (tb), (num_pixels)); \
A Dupsampling_sse2.c96 #define UPSAMPLE_LAST_BLOCK(tb, bb, num_pixels, out) { \ argument
98 memcpy(r1, (tb), (num_pixels)); \
A Dupsampling_neon.c66 #define UPSAMPLE_LAST_BLOCK(tb, bb, num_pixels, out) { \ argument
68 memcpy(r1, (tb), (num_pixels)); \
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/
A Dpal2rgb.c290 uint16 *tr, *tg, *tb, *ta; in cpTag() local
291 CopyField4(tag, tr, tg, tb, ta); in cpTag()
A Dtiff2bw.c361 uint16 *tr, *tg, *tb, *ta; in cpTag() local
362 CopyField4(tag, tr, tg, tb, ta); in cpTag()
A Dthumbnail.c157 uint16 *tr, *tg, *tb, *ta; in cpTag() local
158 CopyField4(tag, tr, tg, tb, ta); in cpTag()
A Dtiffcp.c499 uint16 *tr, *tg, *tb, *ta; in cpTag() local
500 CopyField4(tag, tr, tg, tb, ta); in cpTag()
A Dtiffcrop.c1514 uint16 *tr, *tg, *tb, *ta; in cpTag() local
1515 CopyField4(tag, tr, tg, tb, ta); in cpTag()
/AliOS-Things-master/components/py_engine/engine/py/
A Dobjexcept.c584 size_t *tb = (size_t *)((uint8_t *)MP_STATE_VM(mp_emergency_exception_buf) in mp_obj_exception_add_traceback() local
586 self->traceback_data = tb; in mp_obj_exception_add_traceback()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/swig/
A Dlibwebp_python_wrap.c364 SWIG_TypeEquiv(const char *nb, const char *tb) { in SWIG_TypeEquiv() argument
366 const char* te = tb + strlen(tb); in SWIG_TypeEquiv()
372 equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; in SWIG_TypeEquiv()
383 SWIG_TypeCompare(const char *nb, const char *tb) { in SWIG_TypeCompare() argument
385 const char* te = tb + strlen(tb); in SWIG_TypeCompare()
391 equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; in SWIG_TypeCompare()
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_malloc.c2807 tbinptr *tb = treebin_at(m, i); in do_check_treebin() local
2808 tchunkptr t = *tb; in do_check_treebin()

Completed in 57 milliseconds

12