HomeSort by relevance Sort by last modified time
    Searched refs:string_size (Results 1 - 25 of 41) sorted by null

1 2

  /external/google-breakpad/src/common/linux/
elf_symbols_to_module.h 50 size_t string_size,
elf_symbols_to_module.cc 140 size_t string_size,
146 if (string_section[string_size - 1] != '\0') {
147 const void* null_terminator = memrchr(string_section, '\0', string_size);
148 string_size = reinterpret_cast<const uint8_t*>(null_terminator)
151 ByteBuffer strings(string_section, string_size);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cStringIO.c 47 Py_ssize_t pos, string_size; member in struct:__anon5470
57 Py_ssize_t pos, string_size; member in struct:__anon5471
68 Py_ssize_t pos, string_size; member in struct:__anon5472
139 if (s > self->string_size) s=self->string_size;
142 s=self->string_size;
165 assert(IOOOBJECT(self)->string_size >= 0);
166 l = ((IOobject*)self)->string_size - ((IOobject*)self)->pos;
204 end = ((IOobject*)self)->buf + ((IOobject*)self)->string_size;
218 assert(IOOOBJECT(self)->string_size >= 0);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cStringIO.c 47 Py_ssize_t pos, string_size; member in struct:__anon5803
57 Py_ssize_t pos, string_size; member in struct:__anon5804
68 Py_ssize_t pos, string_size; member in struct:__anon5805
137 if (s > self->string_size) s=self->string_size;
140 s=self->string_size;
163 assert(IOOOBJECT(self)->string_size >= 0);
164 l = ((IOobject*)self)->string_size - ((IOobject*)self)->pos;
197 s = ((IOobject*)self)->buf + ((IOobject*)self)->string_size;
207 assert(IOOOBJECT(self)->string_size >= 0);
    [all...]
  /external/python/cpython2/Modules/
cStringIO.c 47 Py_ssize_t pos, string_size; member in struct:__anon30294
57 Py_ssize_t pos, string_size; member in struct:__anon30295
68 Py_ssize_t pos, string_size; member in struct:__anon30296
139 if (s > self->string_size) s=self->string_size;
142 s=self->string_size;
165 assert(IOOOBJECT(self)->string_size >= 0);
166 l = ((IOobject*)self)->string_size - ((IOobject*)self)->pos;
204 end = ((IOobject*)self)->buf + ((IOobject*)self)->string_size;
218 assert(IOOOBJECT(self)->string_size >= 0)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
stringio.c 14 Py_ssize_t string_size; member in struct:__anon5453
148 if (self->pos + len > self->string_size) {
153 if (self->pos > self->string_size) {
157 0 lo string_size hi
163 memset(self->buf + self->string_size, '\0',
164 (self->pos - self->string_size) * sizeof(Py_UNICODE));
168 existing data if self->pos < self->string_size. */
173 if (self->string_size < self->pos) {
174 self->string_size = self->pos;
193 return PyUnicode_FromUnicode(self->buf, self->string_size);
    [all...]
bytesio.c 9 Py_ssize_t string_size; member in struct:__anon5450
35 str_end = self->buf + self->string_size;
122 if (self->pos > self->string_size) {
126 0 lo string_size hi
131 memset(self->buf + self->string_size, '\0',
132 (self->pos - self->string_size) * sizeof(char));
136 data if self->pos < self->string_size. */
141 if (self->string_size < self->pos) {
142 self->string_size = self->pos;
195 return PyBytes_FromStringAndSize(self->buf, self->string_size);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
stringio.c 14 Py_ssize_t string_size; member in struct:__anon5766
148 if (self->pos + len > self->string_size) {
153 if (self->pos > self->string_size) {
157 0 lo string_size hi
163 memset(self->buf + self->string_size, '\0',
164 (self->pos - self->string_size) * sizeof(Py_UNICODE));
168 existing data if self->pos < self->string_size. */
173 if (self->string_size < self->pos) {
174 self->string_size = self->pos;
193 return PyUnicode_FromUnicode(self->buf, self->string_size);
    [all...]
bytesio.c 9 Py_ssize_t string_size; member in struct:__anon5763
35 str_end = self->buf + self->string_size;
122 if (self->pos > self->string_size) {
126 0 lo string_size hi
131 memset(self->buf + self->string_size, '\0',
132 (self->pos - self->string_size) * sizeof(char));
136 data if self->pos < self->string_size. */
141 if (self->string_size < self->pos) {
142 self->string_size = self->pos;
185 return PyBytes_FromStringAndSize(self->buf, self->string_size);
    [all...]
  /external/python/cpython2/Modules/_io/
stringio.c 14 Py_ssize_t string_size; member in struct:__anon30238
148 if (self->pos + len > self->string_size) {
153 if (self->pos > self->string_size) {
157 0 lo string_size hi
163 memset(self->buf + self->string_size, '\0',
164 (self->pos - self->string_size) * sizeof(Py_UNICODE));
168 existing data if self->pos < self->string_size. */
173 if (self->string_size < self->pos) {
174 self->string_size = self->pos;
193 return PyUnicode_FromUnicode(self->buf, self->string_size);
    [all...]
bytesio.c 9 Py_ssize_t string_size; member in struct:__anon30235
35 str_end = self->buf + self->string_size;
122 if (self->pos > self->string_size) {
126 0 lo string_size hi
131 memset(self->buf + self->string_size, '\0',
132 (self->pos - self->string_size) * sizeof(char));
136 data if self->pos < self->string_size. */
141 if (self->string_size < self->pos) {
142 self->string_size = self->pos;
195 return PyBytes_FromStringAndSize(self->buf, self->string_size);
    [all...]
  /toolchain/binutils/binutils-2.25/include/som/
lst.h 44 unsigned char string_size[4]; member in struct:som_external_lst_header
internal.h 200 unsigned int string_size; member in struct:som_lst_header
  /external/webrtc/webrtc/system_wrappers/source/
data_log_unittest.cc 221 std::string string_size[kNumberOfRows] = { local
238 std::vector<std::string>(string_size,
239 string_size + kNumberOfRows),
275 std::vector<std::string>(string_size,
276 string_size +
  /hardware/qcom/gps/msm8084/core/
LocApiBase.cpp 43 int hexcode(char *hexstring, int string_size,
50 if (i*2 + 3 <= string_size)
61 int decodeAddress(char *addr_string, int string_size,
79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
80 if (hi <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = hi + '0'; }
LocApiBase.h 41 int hexcode(char *hexstring, int string_size,
43 int decodeAddress(char *addr_string, int string_size,
  /hardware/qcom/gps/msm8960/core/
LocApiBase.cpp 42 int hexcode(char *hexstring, int string_size,
49 if (i*2 + 3 <= string_size)
60 int decodeAddress(char *addr_string, int string_size,
78 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
79 if (hi <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = hi + '0'; }
LocApiBase.h 39 int hexcode(char *hexstring, int string_size,
41 int decodeAddress(char *addr_string, int string_size,
  /frameworks/minikin/libs/minikin/
FontCollection.cpp 381 void FontCollection::itemize(const uint16_t *string, size_t string_size, FontStyle style,
388 if (string_size == 0) {
398 U16_NEXT(string, readLength, string_size, nextCh);
407 if (readLength < string_size) {
408 U16_NEXT(string, readLength, string_size, nextCh);
468 result->push_back({mFamilies[0]->getClosestMatch(style), 0, static_cast<int>(string_size)});
  /hardware/qcom/gps/core/
LocApiBase.cpp 43 int hexcode(char *hexstring, int string_size,
50 if (i*2 + 3 <= string_size)
61 int decodeAddress(char *addr_string, int string_size,
79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
80 if (hi <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = hi + '0'; }
  /hardware/qcom/gps/msm8909/core/
LocApiBase.cpp 43 int hexcode(char *hexstring, int string_size,
50 if (i*2 + 3 <= string_size)
61 int decodeAddress(char *addr_string, int string_size,
79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
80 if (hi <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = hi + '0'; }
  /hardware/qcom/gps/msm8994/core/
LocApiBase.cpp 43 int hexcode(char *hexstring, int string_size,
50 if (i*2 + 3 <= string_size)
61 int decodeAddress(char *addr_string, int string_size,
79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
80 if (hi <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = hi + '0'; }
  /hardware/qcom/gps/msm8996/core/
LocApiBase.cpp 43 int hexcode(char *hexstring, int string_size,
50 if (i*2 + 3 <= string_size)
61 int decodeAddress(char *addr_string, int string_size,
79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
80 if (hi <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = hi + '0'; }
  /hardware/qcom/gps/msm8998/core/
LocApiBase.cpp 43 int hexcode(char *hexstring, int string_size,
50 if (i*2 + 3 <= string_size)
61 int decodeAddress(char *addr_string, int string_size,
79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
80 if (hi <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = hi + '0'; }
  /hardware/qcom/gps/sdm845/core/
LocApiBase.cpp 43 int hexcode(char *hexstring, int string_size,
50 if (i*2 + 3 <= string_size)
61 int decodeAddress(char *addr_string, int string_size,
79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
80 if (hi <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = hi + '0'; }

Completed in 965 milliseconds

1 2