HomeSort by relevance Sort by last modified time
    Searched defs:string_size (Results 1 - 20 of 20) sorted by null

  /device/google/cuttlefish_common/common/vsoc/lib/
e2e_test_region_view.h 82 size_t string_size() const { function in class:vsoc::E2ERegionView
  /external/libxkbcommon/xkbcommon/src/compose/
paths.c 56 size_t string_size; local
71 ok = map_file(file, &string, &string_size);
77 end = string + string_size;
131 unmap_file(string, string_size);
  /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 +
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bytesio.c 9 Py_ssize_t string_size; member in struct:__anon5361
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...]
stringio.c 14 Py_ssize_t string_size; member in struct:__anon5364
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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
bytesio.c 9 Py_ssize_t string_size; member in struct:__anon5674
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...]
stringio.c 14 Py_ssize_t string_size; member in struct:__anon5677
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...]
  /external/python/cpython2/Modules/_io/
bytesio.c 9 Py_ssize_t string_size; member in struct:__anon36640
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...]
stringio.c 14 Py_ssize_t string_size; member in struct:__anon36643
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...]
  /external/u-boot/tools/
image-host.c 111 int string_size; local
118 string_size = fdt_size_dt_strings(fit);
139 strdata[1] = cpu_to_fdt32(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:__anon5381
57 Py_ssize_t pos, string_size; member in struct:__anon5382
68 Py_ssize_t pos, string_size; member in struct:__anon5383
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:__anon5714
57 Py_ssize_t pos, string_size; member in struct:__anon5715
68 Py_ssize_t pos, string_size; member in struct:__anon5716
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/freetype/src/type42/
t42parse.c 547 FT_ULong n, string_size, old_string_size, real_size; local
579 string_size = 0;
603 string_size = (FT_ULong)( ( parser->root.cursor - cur - 2 + 1 ) / 2 );
604 if ( !string_size )
610 if ( FT_REALLOC( string_buf, old_string_size, string_size ) )
616 (void)T1_ToBytes( parser, string_buf, string_size, &real_size, 1 );
617 old_string_size = string_size;
618 string_size = real_size;
642 string_size = (FT_ULong)tmp;
650 if ( (FT_ULong)( limit - parser->root.cursor ) <= string_size )
    [all...]
  /external/python/cpython2/Modules/
cStringIO.c 47 Py_ssize_t pos, string_size; member in struct:__anon36699
57 Py_ssize_t pos, string_size; member in struct:__anon36700
68 Py_ssize_t pos, string_size; member in struct:__anon36701
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...]
  /external/python/cpython3/Modules/_io/
bytesio.c 15 Py_ssize_t string_size; member in struct:__anon37238
62 if (self->pos >= self->string_size)
66 maxlen = self->string_size - self->pos;
86 not lesser than self->string_size. Returns 0 on success, -1 otherwise. */
93 assert(size >= (size_t)self->string_size);
98 self->string_size);
173 if (unshare_buffer(self, Py_MAX(endpos, (size_t)self->string_size)) < 0)
177 if (self->pos > self->string_size) {
181 0 lo string_size hi
186 memset(PyBytes_AS_STRING(self->buf) + self->string_size, '\0'
    [all...]
stringio.c 24 Py_ssize_t string_size; member in struct:__anon37242
219 if (self->string_size == self->pos) {
228 if (self->pos + len > self->string_size) {
233 if (self->pos > self->string_size) {
237 0 lo string_size hi
243 memset(self->buf + self->string_size, '\0',
244 (self->pos - self->string_size) * sizeof(Py_UCS4));
248 existing data if self->pos < self->string_size. */
258 if (self->string_size < self->pos)
259 self->string_size = self->pos
    [all...]
  /external/tcpdump/
util-print.c 526 size_t space_left = sizeof(buf), string_size; local
543 string_size = strlcpy(bufp, sepstr, space_left);
544 if (string_size >= space_left)
546 bufp += string_size;
547 space_left -= string_size;
550 string_size = strlcpy(bufp, lp->s, space_left);
551 if (string_size >= space_left)
553 bufp += string_size;
554 space_left -= string_size;
  /external/freetype/src/pcf/
pcfread.c 489 FT_ULong string_size; local
586 (void)FT_READ_ULONG( string_size );
588 (void)FT_READ_ULONG_LE( string_size );
592 FT_TRACE4(( " string size: %ld\n", string_size ));
595 if ( string_size > size - orig_nprops * PCF_PROPERTY_SIZE )
603 if ( string_size > 16777472 ) /* 256 * (65536 + 1) */
607 string_size = 16777472;
611 if ( FT_NEW_ARRAY( strings, string_size + 1 ) )
614 error = FT_Stream_Read( stream, (FT_Byte*)strings, string_size );
630 ( (FT_ULong)name_offset > string_size ) )
    [all...]
  /external/selinux/mcstrans/src/
mcstrans.c 956 string_size(const void *p1, const void *p2) { function
1008 qsort(sortable, n_el, sizeof(char *), string_size);
    [all...]
  /external/vixl/test/aarch32/
test-assembler-aarch32.cc 1177 const int string_size = AlignUp(ldrd_range + kMaxInstructionSizeInBytes, 4); local
1178 std::string test_string(string_size, 'x');
1226 const int string_size = AlignUp(ldrd_range + kMaxInstructionSizeInBytes, 4); local
1227 std::string test_string(string_size, 'x');
1278 const int string_size = AlignUp(ldrd_range + kMaxInstructionSizeInBytes, 4); local
1279 std::string test_string(string_size, 'x');
1521 const int string_size = AlignUp(ldrd_range + kMaxInstructionSizeInBytes, 4); local
1565 const int string_size = AlignUp(ldrd_range + kMaxInstructionSizeInBytes, 4); local
1626 const int string_size = ldrd_range + offset; local
5149 const int string_size = 1000; \/\/ A lot more than the cbz range. local
    [all...]

Completed in 1864 milliseconds