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

  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.resize_file/
resize_file.pass.cpp 80 const std::uintmax_t new_s = 100; local
82 resize_file(file1, new_s, ec);
84 TEST_CHECK(file_size(file1) == new_s);
87 const std::uintmax_t new_s = 1; local
89 resize_file(file1, new_s, ec);
91 TEST_CHECK(file_size(file1) == new_s);
94 const std::uintmax_t new_s = 0; local
96 resize_file(file1, new_s, ec);
98 TEST_CHECK(file_size(file1) == new_s);
102 const std::uintmax_t new_s = 1024 local
    [all...]
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/
enable_shared_from_this.pass.cpp 99 std::shared_ptr<T> new_s = ptr->shared_from_this(); local
100 assert(new_s == s);
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-hangul.cc 316 hb_codepoint_t new_s = s + new_tindex; local
317 if (font->has_glyph (new_s))
319 buffer->replace_glyphs (2, 1, &new_s);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
stropmodule.c 1096 char *new_s; local
1121 new_s = (char *)PyMem_MALLOC(new_len);
1122 if (new_s == NULL)
1124 out_s = new_s;
1133 memcpy(new_s, str, offset);
1138 new_s += offset;
1139 memcpy(new_s, sub, sub_len);
1140 new_s += sub_len;
1144 memcpy(new_s, str, len);
1165 char *str, *pat,*sub,*new_s; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
stropmodule.c 1094 char *new_s; local
1119 new_s = (char *)PyMem_MALLOC(new_len);
1120 if (new_s == NULL)
1122 out_s = new_s;
1131 memcpy(new_s, str, offset);
1136 new_s += offset;
1137 memcpy(new_s, sub, sub_len);
1138 new_s += sub_len;
1142 memcpy(new_s, str, len);
1163 char *str, *pat,*sub,*new_s; local
    [all...]
  /external/python/cpython2/Modules/
stropmodule.c 1096 char *new_s; local
1128 new_s = (char *)PyMem_MALLOC(new_len);
1129 if (new_s == NULL)
1131 out_s = new_s;
1140 memcpy(new_s, str, offset);
1145 new_s += offset;
1146 memcpy(new_s, sub, sub_len);
1147 new_s += sub_len;
1151 memcpy(new_s, str, len);
1172 char *str, *pat,*sub,*new_s; local
    [all...]
  /external/selinux/libsemanage/src/
semanage_store.c 1180 char *new_s = realloc(s, len + 2); local
1181 if (new_s == NULL) {
1184 s = new_s;
1199 char *new_s; local
1205 new_s = realloc(s, s_len + t_len + 1);
1206 if (new_s == NULL) {
1209 s = new_s;
    [all...]

Completed in 240 milliseconds