Searched refs:ent (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/components/amp_adapter/platform/linux/peripheral/ |
A D | aos_hal_timer.c | 23 struct sigevent ent; in aos_hal_timer_init() local 26 memset(&ent, 0x00, sizeof(struct sigevent)); in aos_hal_timer_init() 29 ent.sigev_notify = SIGEV_THREAD; in aos_hal_timer_init() 30 ent.sigev_notify_function = (void (*)(union sigval))timer_common_cb; in aos_hal_timer_init() 31 ent.sigev_value.sival_ptr = tim; in aos_hal_timer_init() 33 if (timer_create(CLOCK_MONOTONIC, &ent, timer) != 0) { in aos_hal_timer_init()
|
/AliOS-Things-master/components/linkkit/external/nghttp2/ |
A D | nghttp2_hd.c | 478 ent->nv = *nv; in nghttp2_hd_entry_init() 484 ent->next = NULL; in nghttp2_hd_entry_init() 485 ent->hash = 0; in nghttp2_hd_entry_init() 535 *bucket = ent; in hd_map_insert() 540 ent->next = *bucket; in hd_map_insert() 541 *bucket = ent; in hd_map_insert() 1144 entry_room(ent->nv.name->len, ent->nv.value->len); in add_hd_table_incremental() 1147 (char *)ent->nv.name->base, (char *)ent->nv.value->base); in add_hd_table_incremental() 1240 if (ent == NULL) { in search_hd_table() 1263 entry_room(ent->nv.name->len, ent->nv.value->len); in hd_context_shrink_table_size() [all …]
|
A D | nghttp2_hd.h | 266 void nghttp2_hd_entry_init(nghttp2_hd_entry *ent, nghttp2_hd_nv *nv); 272 void nghttp2_hd_entry_free(nghttp2_hd_entry *ent);
|
A D | nghttp2_stream.c | 978 nghttp2_pq_entry *ent; in nghttp2_stream_next_outbound_item() local 990 ent = nghttp2_pq_top(&stream->obq); in nghttp2_stream_next_outbound_item() 991 if (!ent) { in nghttp2_stream_next_outbound_item() 994 stream = nghttp2_struct_of(ent, nghttp2_stream, pq_entry); in nghttp2_stream_next_outbound_item()
|
/AliOS-Things-master/components/amp_adapter/platform/linux/ |
A D | aos_system.c | 294 struct sigevent ent; in aos_timer_create() local 310 memset(&ent, 0x00, sizeof(struct sigevent)); in aos_timer_create() 313 ent.sigev_notify = SIGEV_THREAD; in aos_timer_create() 314 ent.sigev_notify_function = (void (*)(union sigval))timer_common_cb; in aos_timer_create() 315 ent.sigev_value.sival_ptr = amp_timer; in aos_timer_create() 317 if (timer_create(CLOCK_MONOTONIC, &ent, &_timer->timer) != 0) { in aos_timer_create() 496 struct dirent *ent = readdir(proc); in dumpsys_task_func() local 497 if (!ent) { in dumpsys_task_func() 500 if (ent->d_name[0] == '.') { in dumpsys_task_func() 505 snprintf(fn, sizeof fn, "/proc/self/task/%s/comm", ent->d_name); in dumpsys_task_func() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_lzw.c | 900 hcode_t ent; in LZWEncode() local 928 ent = (hcode_t)sp->enc_oldcode; in LZWEncode() 930 if (ent == (hcode_t) -1 && cc > 0) { in LZWEncode() 937 ent = *bp++; cc--; incount++; in LZWEncode() 941 fcode = ((long)c << BITS_MAX) + ent; in LZWEncode() 942 h = (c << HSHIFT) ^ ent; /* xor hashing */ in LZWEncode() 952 ent = hp->code; in LZWEncode() 971 ent = hp->code; in LZWEncode() 991 PutNextCode(op, ent); in LZWEncode() 992 ent = (hcode_t)c; in LZWEncode() [all …]
|
/AliOS-Things-master/components/freetype/src/tools/ftrandom/ |
A D | ftrandom.c | 343 struct dirent* ent; in FindFonts() local 355 while ( ( ent = readdir( examples ) ) != NULL ) in FindFonts() 358 "%s/%s", fontdirs[i], ent->d_name ); in FindFonts()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | quickjs.c | 12229 JSBinaryOperatorDefEntry* ent; in find_binary_op() local 12232 ent = &def->tab[i]; in find_binary_op() 12234 return ent->ops[op]; in find_binary_op() 48096 JSBinaryOperatorDefEntry* ent; in js_operator_set_finalizer() local 48104 ent = &opset->left.tab[j]; in js_operator_set_finalizer() 48106 if (ent->ops[i]) in js_operator_set_finalizer() 48114 if (ent->ops[i]) in js_operator_set_finalizer() 48128 JSBinaryOperatorDefEntry* ent; in js_operator_set_mark() local 48139 if (ent->ops[i]) in js_operator_set_mark() 48147 if (ent->ops[i]) in js_operator_set_mark() [all …]
|
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/ |
A D | duktape.c | 23445 if (ent != NULL) { in duk_put_function_list() 23446 while (ent->key != NULL) { in duk_put_function_list() 23447 duk_push_c_function(thr, ent->value, ent->nargs); in duk_put_function_list() 23449 ent++; in duk_put_function_list() 23461 if (ent != NULL) { in duk_put_number_list() 23467 ent++; in duk_put_number_list() 60807 duk_litcache_entry *ent; local 60813 if (ent->addr == str) { 60819 return ent->h; 60824 ent->addr = str; [all …]
|
Completed in 339 milliseconds