Home
last modified time | relevance | path

Searched refs:token_buffer (Results 1 - 6 of 6) sorted by relevance

/third_party/json/include/nlohmann/detail/input/
H A Dlexer.hpp243 scanning, bytes are escaped and copied into buffer token_buffer. Then the
244 function returns successfully, token_buffer is *not* null-terminated (as it
245 may contain \0 bytes), and token_buffer.size() is the number of bytes in the
256 // reset token_buffer (ignore opening quote) in scan_string()
957 During scanning, the read bytes are stored in token_buffer. This string is
971 // reset token_buffer to store the number's bytes in scan_number()
1253 const auto x = std::strtoull(token_buffer.data(), &endptr, 10); in scan_number()
1256 JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); in scan_number()
1269 const auto x = std::strtoll(token_buffer in scan_number()
[all...]
/third_party/alsa-lib/src/alisp/
H A Dalisp.c519 if ((instance->token_buffer = (char *)malloc(instance->token_buffer_max)) == NULL) { in init_lex()
529 free(instance->token_buffer); in done_lex()
534 int off = p - instance->token_buffer; in extend_buf()
537 instance->token_buffer = (char *)realloc(instance->token_buffer, instance->token_buffer_max); in extend_buf()
538 if (instance->token_buffer == NULL) { in extend_buf()
543 return instance->token_buffer + off; in extend_buf()
572 sprintf(instance->token_buffer, "%d", c); in gettoken()
592 p = instance->token_buffer; in gettoken()
596 if (p - instance->token_buffer > in gettoken()
[all...]
H A Dalisp_local.h140 char *token_buffer; member
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_device_generated_commands.c1135 struct radv_buffer token_buffer; in radv_prepare_dgc() local
1166 radv_buffer_init(&token_buffer, cmd_buffer->device, cmd_buffer->upload.upload_bo, upload_size, in radv_prepare_dgc()
1309 buf_info[ds_cnt] = (VkDescriptorBufferInfo){.buffer = radv_buffer_to_handle(&token_buffer), in radv_prepare_dgc()
1380 radv_buffer_finish(&token_buffer); in radv_prepare_dgc()
/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp6645 scanning, bytes are escaped and copied into buffer token_buffer. Then the
6646 function returns successfully, token_buffer is *not* null-terminated (as it
6647 may contain \0 bytes), and token_buffer.size() is the number of bytes in the
6658 // reset token_buffer (ignore opening quote)
7359 During scanning, the read bytes are stored in token_buffer. This string is
7373 // reset token_buffer to store the number's bytes
7655 const auto x = std::strtoull(token_buffer.data(), &endptr, 10);
7658 JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size());
7671 const auto x = std::strtoll(token_buffer
[all...]
/third_party/json/single_include/nlohmann/
H A Djson.hpp7544 scanning, bytes are escaped and copied into buffer token_buffer. Then the
7545 function returns successfully, token_buffer is *not* null-terminated (as it
7546 may contain \0 bytes), and token_buffer.size() is the number of bytes in the
7557 // reset token_buffer (ignore opening quote)
8258 During scanning, the read bytes are stored in token_buffer. This string is
8272 // reset token_buffer to store the number's bytes
8554 const auto x = std::strtoull(token_buffer.data(), &endptr, 10);
8557 JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size());
8570 const auto x = std::strtoll(token_buffer
[all...]

Completed in 28 milliseconds