/AliOS-Things-master/components/SDL2/src/stdlib/ |
A D | SDL_qsort.c | 197 first=ffirst=stack[stacktop].first;\ 287 if (compare(first,mid)>0) swapper(first,mid);\ 307 while (compare(first,pivot)<0) first+=sz; \ 331 if (compare(first,last)>0) first=last; \ 333 if (first!=base) swapper(first,(char*)base); 338 for (first=((char*)base)+size;first!=last;first+=size) { \ 376 { char *a=first, *b=first+d, *c=first+2*d; in pivot_big() 420 first=(char*)base; last=first+(nmemb-1)*size; in qsort_nonaligned() 451 first=(char*)base; last=first+(nmemb-1)*size; in qsort_aligned() 481 first=(char*)base; last=first+(nmemb-1)*WORD_BYTES; in qsort_words() [all …]
|
/AliOS-Things-master/components/freetype/src/cache/ |
A D | ftcmru.c | 35 if ( first ) in FTC_MruNode_Prepend() 58 first->prev = node; in FTC_MruNode_Prepend() 81 if ( first != node ) in FTC_MruNode_Up() 108 last = first->prev; in FTC_MruNode_Up() 111 first->prev = node; in FTC_MruNode_Up() 113 node->next = first; in FTC_MruNode_Up() 210 first = list->nodes; in FTC_MruList_Find() 213 if ( first ) in FTC_MruList_Find() 215 node = first; in FTC_MruList_Find() 335 while ( first && ( selection == NULL || selection( first, key ) ) ) in FTC_MruList_RemoveSelection() [all …]
|
A D | ftcmanag.c | 469 FTC_Node node, first; in FTC_Manager_Check() local 472 first = manager->nodes_list; in FTC_Manager_Check() 475 if ( first ) in FTC_Manager_Check() 480 node = first; in FTC_Manager_Check() 495 } while ( node != first ); in FTC_Manager_Check() 503 if ( first ) in FTC_Manager_Check() 508 node = first; in FTC_Manager_Check() 514 } while ( node != first ); in FTC_Manager_Check() 535 FTC_Node node, first; in FTC_Manager_Compress() local 541 first = manager->nodes_list; in FTC_Manager_Compress() [all …]
|
A D | ftccmap.c | 75 FT_UInt32 first; /* first character in node */ member 82 FTC_CMAP_HASH( (x)->face_id, (x)->cmap_index, (x)->first ) 128 node->first = (query->char_code / FTC_CMAP_INDICES_MAX) * in ftc_cmap_node_new() 169 FT_UInt32 offset = (FT_UInt32)( query->char_code - node->first ); in ftc_cmap_node_compare() 281 FT_ASSERT( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first ) < in FTC_CMapCache_Lookup() 285 if ( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first >= in FTC_CMapCache_Lookup() 290 FTC_CMAP_NODE( node )->first]; in FTC_CMapCache_Lookup() 328 FTC_CMAP_NODE( node )->first] in FTC_CMapCache_Lookup()
|
/AliOS-Things-master/components/ble_host/bt_host/port/core/ |
A D | mbox.c | 45 mbox->first = mbox->last = 0; in k_mbox_new() 85 u8_t first; in k_mbox_post() local 110 first = 1; in k_mbox_post() 112 first = 0; in k_mbox_post() 117 if (first) { in k_mbox_post() 131 u8_t first; in k_mbox_trypost() local 153 first = 1; in k_mbox_trypost() 155 first = 0; in k_mbox_trypost() 160 if (first) { in k_mbox_trypost() 228 mbox->first++; in k_mbox_fetch() [all …]
|
/AliOS-Things-master/components/oss/src/model/ |
A D | LifecycleRule.cc | 122 auto first = transitionList_.begin(); in operator ==() local 125 for (; first != transitionList_.end(); ) { in operator ==() 127 if (first->Expiration().Days() != Rightfirst->Expiration().Days() || in operator ==() 128 … first->Expiration().CreatedBeforeDate() != Rightfirst->Expiration().CreatedBeforeDate() || in operator ==() 129 first->StorageClass() != Rightfirst->StorageClass()) { in operator ==() 132 first++; in operator ==() 166 first = noncurrentVersionTransitionList_.begin(); in operator ==() 169 for (; first != noncurrentVersionTransitionList_.end(); ) { in operator ==() 171 if (first->Expiration().Days() != Rightfirst->Expiration().Days() || in operator ==() 173 first->StorageClass() != Rightfirst->StorageClass()) { in operator ==() [all …]
|
A D | GetObjectRequest.cc | 182 bool first = true; in specialHeaders() local 184 if (!first) { in specialHeaders() 188 first = false; in specialHeaders() 195 bool first = true; in specialHeaders() local 197 if (!first) { in specialHeaders() 201 first = false; in specialHeaders() 220 parameters[param.first] = param.second; in specialParameters()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/port/ |
A D | sys_arch.c | 169 mbox->first = mbox->last = 0; in sys_mbox_new() 208 u8_t first; in sys_mbox_post() local 228 first = 1; in sys_mbox_post() 230 first = 0; in sys_mbox_post() 235 if (first) { in sys_mbox_post() 249 u8_t first; in sys_mbox_trypost() local 267 first = 1; in sys_mbox_trypost() 269 first = 0; in sys_mbox_trypost() 274 if (first) { in sys_mbox_trypost() 334 mbox->first++; in sys_arch_mbox_fetch() [all …]
|
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftoutln.c | 81 first = 0; in FT_Outline_Decompose() 279 first = last + 1; in FT_Outline_Decompose() 552 first = 0; in FT_Outline_Reverse() 594 first = last + 1; in FT_Outline_Reverse() 745 FT_Vector* first; 793 FT_Vector* first; 850 xmin_point = first; 932 first = 0; in FT_Outline_EmboldenXY() 1018 first = last + 1; in FT_Outline_EmboldenXY() 1056 first = 0; in FT_Outline_Get_Orientation() [all …]
|
/AliOS-Things-master/kernel/rhino/ |
A D | k_timer.c | 51 if (first == 0u) { in timer_create() 55 if (first > RHINO_MAX_TICKS) { in timer_create() 65 timer->init_count = first; in timer_create() 88 tick_t first, tick_t round, void *arg, uint8_t auto_run) in krhino_timer_create() argument 107 tick_t first, tick_t round, void *arg, uint8_t auto_run) in krhino_timer_dyn_create() argument 167 kstat_t krhino_timer_change(ktimer_t *timer, tick_t first, tick_t round) in krhino_timer_change() argument 173 if (first == 0u) { in krhino_timer_change() 177 if (first > RHINO_MAX_TICKS) { in krhino_timer_change() 186 cb.first = first; in krhino_timer_change() 282 if (cb->first == 0u) { in cmd_proc() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | zlib2ansi | 69 my $first = shift @bits; 70 $first =~ s/^\s*//; 71 push @outParams, $first; 72 $first =~ /^(\w+\s*)/;
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/blast/ |
A D | blast.c | 57 int first; /* true to check distances (for first 4K) */ member 133 int first; /* first code of length len */ in decode() local 142 code = first = index = 0; in decode() 150 if (code < first + count) { /* if length len, return symbol */ in decode() 153 return h->symbol[index + (code - first)]; in decode() 156 first += count; in decode() 157 first <<= 1; in decode() 342 if (s->first && dist > s->next) in decomp() 364 s->first = 0; in decomp() 375 s->first = 0; in decomp() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/puff/ |
A D | puff.c | 239 int first; /* first code of length len */ in decode() local 243 code = first = index = 0; in decode() 247 if (code - count < first) /* if length len, return symbol */ in decode() 248 return h->symbol[index + (code - first)]; in decode() 250 first += count; in decode() 251 first <<= 1; in decode() 267 int first; /* first code of length len */ in decode() local 276 code = first = index = 0; in decode() 287 return h->symbol[index + (code - first)]; in decode() 290 first += count; in decode() [all …]
|
/AliOS-Things-master/components/freetype/src/psaux/ |
A D | t1cmap.c | 181 cmap->first = encoding->code_first; in t1_cmap_custom_init() 182 cmap->count = (FT_UInt)( encoding->code_last - cmap->first ); in t1_cmap_custom_init() 196 cmap->first = 0; in t1_cmap_custom_done() 208 if ( ( char_code >= cmap->first ) && in t1_cmap_custom_char_index() 209 ( char_code < ( cmap->first + cmap->count ) ) ) in t1_cmap_custom_char_index() 226 if ( char_code < cmap->first ) in t1_cmap_custom_char_next() 227 char_code = cmap->first; in t1_cmap_custom_char_next() 229 for ( ; char_code < ( cmap->first + cmap->count ); char_code++ ) in t1_cmap_custom_char_next()
|
/AliOS-Things-master/kernel/rhino/include/ |
A D | k_timer.h | 66 tick_t first; member 93 tick_t first, tick_t round, void *arg, uint8_t auto_run); 119 tick_t first, tick_t round, void *arg, uint8_t auto_run); 158 kstat_t krhino_timer_change(ktimer_t *timer, tick_t first, tick_t round);
|
/AliOS-Things-master/components/freetype/src/pshinter/ |
A D | pshalgo.c | 1050 start = end = first; in psh_glyph_compute_inflections() 1082 first = start; in psh_glyph_compute_inflections() 1316 first = next; in psh_glyph_init() 1407 point = first; in psh_glyph_compute_extrema() 1717 first = next; in psh_glyph_find_strong_points() 2051 first = 0; in psh_glyph_interpolate_other_points() 2056 if ( !first ) in psh_glyph_interpolate_other_points() 2067 delta = first->cur_u - FT_MulFix( first->org_u, scale ); in psh_glyph_interpolate_other_points() 2078 start = first; in psh_glyph_interpolate_other_points() 2091 first = next; in psh_glyph_interpolate_other_points() [all …]
|
/AliOS-Things-master/components/jsoncpp/src/lib_json/ |
A D | json_valueiterator.h | 68 const Value::CZString czstring = (*current_).first; in key() 78 const Value::CZString czstring = (*current_).first; in index() 94 const char* cname = (*current_).first.data(); in memberName() 99 const char* cname = (*current_).first.data(); in memberName() 104 *end = cname + (*current_).first.length(); in memberName()
|
/AliOS-Things-master/solutions/tflite_micro_speech_demo/micro_speech/train/speech_commands/ |
A D | recognize_commands.cc | 46 (current_time_ms < previous_results_.front().first)) { in ProcessLatestResults() 51 previous_results_.front().first); in ProcessLatestResults() 59 while (previous_results_.front().first < time_limit) { in ProcessLatestResults() 66 const int64 earliest_time = previous_results_.front().first; in ProcessLatestResults() 100 const int current_top_index = sorted_average_scores[0].first; in ProcessLatestResults()
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | memory_buffer_alloc.c | 71 memory_header *first; member 114 memory_header *cur = heap.first; in debug_chain() 181 memory_header *prv = heap.first, *cur; in verify_chain() 192 if( heap.first->prev != NULL ) in verify_chain() 201 cur = heap.first->next; in verify_chain() 520 if( heap.first->next == NULL ) in mbedtls_memory_buffer_alloc_status() 601 heap.first = (memory_header *)buf; in mbedtls_memory_buffer_alloc_init() 603 heap.first->magic1 = MAGIC1; in mbedtls_memory_buffer_alloc_init() 604 heap.first->magic2 = MAGIC2; in mbedtls_memory_buffer_alloc_init() 605 heap.first_free = heap.first; in mbedtls_memory_buffer_alloc_init() [all …]
|
/AliOS-Things-master/components/oss/src/utils/ |
A D | SignUtils.cc | 87 std::string lower = Trim(ToLower(header.first.c_str()).c_str()); in build() 98 if (ParamtersToSign.find(param.first) == ParamtersToSign.end()) { in build() 103 ss << param.first; in build() 121 ss << param.first << ":" << param.second << '\n'; in build()
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/src/ |
A D | RpcServiceClient.cc | 83 signParams[p.first] = p.second; in buildHttpRequest() 114 query[p.first] = p.second; in buildHttpRequest() 119 signParams[p.first] = p.second; in buildHttpRequest() 130 queryString << "&" << p.first << "=" << UrlEncode(p.second); in buildHttpRequest() 142 request.setHeader(h.first, h.second); in buildHttpRequest() 158 tmp << "&" << p.first << "=" << UrlEncode(p.second); in buildHttpRequest()
|
/AliOS-Things-master/components/freetype/src/tools/docmaker/ |
A D | docbeauty.py | 27 first = 1 30 text.extend( markup.beautify( first ) ) 31 first = 0
|
/AliOS-Things-master/components/freetype/src/autofit/ |
A D | aflatin.c | 364 FT_Int first = 0; in af_latin_metrics_init_blues() local 519 FT_Int first; in af_latin_metrics_init_blues() local 548 last = first; in af_latin_metrics_init_blues() 561 first = last; in af_latin_metrics_init_blues() 1293 AF_Point first = segment->first; in af_latin_hints_compute_segments() local 1299 if ( first == last ) in af_latin_hints_compute_segments() 1307 p = first->prev; in af_latin_hints_compute_segments() 1322 p = first->prev; in af_latin_hints_compute_segments() 1550 edge->first = seg; in af_latin_hints_compute_edges() 1597 seg = edge->first; in af_latin_hints_compute_edges() [all …]
|
A D | afhints.c | 703 AF_Point first = points; in af_glyph_hints_reload() local 722 if ( point == first ) in af_glyph_hints_reload() 724 prev = first->prev; in af_glyph_hints_reload() 739 while ( point_ != first ) in af_glyph_hints_reload() 760 first = prev + 1; in af_glyph_hints_reload() 885 AF_Point point, first, last; in af_glyph_hints_align_edge_points() local 891 first = seg->first; in af_glyph_hints_align_edge_points() 893 point = first; in af_glyph_hints_align_edge_points() 911 AF_Point point, first, last; in af_glyph_hints_align_edge_points() local 917 first = seg->first; in af_glyph_hints_align_edge_points() [all …]
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/ble_stack/common/api/ |
A D | co_list.h | 50 struct co_list_hdr *first; member 254 listempty = (list->first == NULL); in co_list_is_empty() 269 return(list->first); in co_list_pick()
|