Searched refs:input_end (Results 1 – 5 of 5) sorted by relevance
/AliOS-Things-master/components/linkkit/infra/ |
A D | infra_cjson.c | 331 const unsigned char *input_end = buffer_at_offset(input_buffer) + 1; in parse_string() local 346 ((int)(input_end - input_buffer->content) < input_buffer->length) && in parse_string() 347 (*input_end != '\"')) { in parse_string() 349 if (input_end[0] == '\\') { in parse_string() 350 if ((int)(input_end + 1 - input_buffer->content) >= in parse_string() 357 input_end++; in parse_string() 359 input_end++; in parse_string() 361 if (((int)(input_end - input_buffer->content) >= in parse_string() 363 (*input_end != '\"')) { in parse_string() 371 item->value_length = input_end - input_pointer; in parse_string() [all …]
|
/AliOS-Things-master/components/cjson/src/ |
A D | cJSON.c | 587 if ((input_end - first_sequence) < 6) in utf16_literal_to_utf8() 609 if ((input_end - second_sequence) < 6) in utf16_literal_to_utf8() 701 const unsigned char *input_end = buffer_at_offset(input_buffer) + 1; in parse_string() local 715 …while (((size_t)(input_end - input_buffer->content) < input_buffer->length) && (*input_end != '\"'… in parse_string() 718 if (input_end[0] == '\\') in parse_string() 726 input_end++; in parse_string() 728 input_end++; in parse_string() 730 … if (((size_t)(input_end - input_buffer->content) >= input_buffer->length) || (*input_end != '\"')) in parse_string() 746 while (input_pointer < input_end) in parse_string() 756 if ((input_end - input_pointer) < 1) in parse_string() [all …]
|
/AliOS-Things-master/solutions/tflite_micro_speech_demo/micro_speech/train/speech_commands/ |
A D | test_streaming_accuracy.py | 145 input_end = audio_data_offset + clip_duration_samples 150 numpy.expand_dims(data[input_start:input_end], axis=-1),
|
A D | test_streaming_accuracy.cc | 251 const float* input_end = input_start + clip_duration_samples; in main() local 252 std::copy(input_start, input_end, audio_data_tensor.flat<float>().data()); in main()
|
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/ |
A D | duktape.c | 5121 const duk_uint8_t *input_end; member 96258 if (*sp >= re_ctx->input_end) { 96261 …k_codepoint_t) duk_unicode_decode_xutf8_checked(re_ctx->thr, sp, re_ctx->input, re_ctx->input_end); 96269 return duk__utf8_backtrack(re_ctx->thr, sp, re_ctx->input, re_ctx->input_end, count); 96467 if (sp >= re_ctx->input_end) { 96883 re_ctx.input_end = re_ctx.input + DUK_HSTRING_GET_BYTELEN(h_input); 96987 (const void *) re_ctx.input, (const void *) re_ctx.input_end)); 97031 (void) duk__utf8_advance(thr, &sp, re_ctx.input, re_ctx.input_end, (duk_uint_fast32_t) 1);
|
Completed in 254 milliseconds