HomeSort by relevance Sort by last modified time
    Searched defs:postfix (Results 1 - 25 of 35) sorted by null

1 2

  /external/fio/lib/
num2str.c 14 const char *postfix[] = { "", "K", "M", "G", "P", "E" }; local
38 while (post_index < sizeof(postfix)) {
51 if (post_index >= ARRAY_LENGTH(postfix))
54 sprintf(buf, "%lu%s%s", num, postfix[post_index],
75 sprintf(buf, "%lu.%u%s%s", num, modulo, postfix[post_index],
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/inspectedWindow/chrome-preprocessor/Panel/
PreprocessorPanel.js 13 var postfix = '\n//# sourceURL=' + url + '.js\n'; variable
14 return prefix + source + postfix;
  /external/chromium_org/third_party/re2/re2/testing/
regexp_generator.cc 9 // postfix language. Each command in the language is a string,
60 vector<string> postfix; local
61 GeneratePostfix(&postfix, 0, 0, 0);
70 vector<string> postfix; local
71 GenerateRandomPostfix(&postfix, 0, 0, 0);
88 // Generates all possible postfix command sequences.
91 // post: the current postfix sequence
135 // Generates a random postfix command sequence.
177 // Interprets the postfix command sequence to create a regular expression
  /external/regex-re2/re2/testing/
regexp_generator.cc 9 // postfix language. Each command in the language is a string,
60 vector<string> postfix; local
61 GeneratePostfix(&postfix, 0, 0, 0);
70 vector<string> postfix; local
71 GenerateRandomPostfix(&postfix, 0, 0, 0);
88 // Generates all possible postfix command sequences.
91 // post: the current postfix sequence
135 // Generates a random postfix command sequence.
177 // Interprets the postfix command sequence to create a regular expression
  /external/chromium_org/third_party/brotli/src/brotli/enc/
prefix.cc 139 int postfix = distance_code & postfix_mask; local
144 ((2 * (*nbits - 1) + prefix) << postfix_bits) + postfix;
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
by_dir.c 284 const char *postfix=""; local
294 postfix="";
301 postfix="r";
381 postfix,k);
387 postfix,k);
  /external/openssl/crypto/x509/
by_dir.c 290 const char *postfix=""; local
300 postfix="";
307 postfix="r";
384 postfix,k);
390 postfix,k);
  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 53 * &lt;row postfix="phones">
56 * &lt;row postfix="phones">
78 private final static String POSTFIX = "postfix";
112 String postfix = atts.getValue(POSTFIX); local
113 if (postfix != null) {
115 postfix);
  /frameworks/native/cmds/installd/tests/
installd_utils_test.cpp 344 char postfix[postfixSize + 1]; local
345 memset(postfix, 'a', postfixSize);
346 postfix[postfixSize] = '\0';
348 EXPECT_EQ(-1, create_pkg_path(path, "com.example.package", postfix, 0))
349 << "Should return error because postfix is too long.";
356 << "Should return error because postfix is too long.";
439 << "Should return error because postfix is too long.";
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/
OMX_Core.c 171 static const char postfix[] = ".so"; local
236 char buf[sizeof(prefix) + MAXNAMESIZE + sizeof(postfix)];
239 strcat(buf, postfix);
  /hardware/ti/omap4-aah/domx/omx_core/src/
OMX_Core.c 193 static const char postfix[] = ".so"; local
198 char buf[sizeof(prefix) + MAXNAMESIZE + sizeof(postfix)];
245 strcat(buf, postfix); /* are safe to use in this context. */
  /hardware/ti/omap4xxx/domx/omx_core/src/
OMX_Core.c 186 static const char postfix[] = ".so"; local
191 char buf[sizeof(prefix) + MAXNAMESIZE + sizeof(postfix)];
238 strcat(buf, postfix); /* are safe to use in this context. */
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowEditor.java 99 final String postfix = ".txt"; local
101 StringBuilder src = new StringBuilder(prefix).append(position).append(postfix);
110 src = new StringBuilder(prefix).append(position + 1).append(postfix);
  /external/qemu/util/
qemu-option.c 190 char *postfix; local
194 number = strtoull(value, &postfix, 0);
195 if (*postfix != '\0') {
209 char *postfix; local
213 sizef = strtod(value, &postfix);
214 switch (*postfix) {
  /external/valgrind/main/coregrind/m_gdbserver/
target.c 105 static const char *postfix[3] = { "", "s1", "s2" }; local
112 + strlen (postfix[i]) + 1);
114 strcat (regname, postfix[i]);
  /packages/apps/Camera2/src/com/android/camera/util/
ImageLoader.java 66 String postfix = MimeTypeMap.getFileExtensionFromUrl(src.toString()); local
68 if (postfix != null) {
69 ret = MimeTypeMap.getSingleton().getMimeTypeFromExtension(postfix);
  /external/fio/
parse.c 97 "string with possible k/m/g postfix (opt=4k)",
98 "string with time postfix (opt=10s)",
385 char *postfix; local
387 postfix = strchr(str, ':');
388 if (!postfix)
391 return (int)(postfix - str);
goptions.c 828 const gchar *postfix[] = { "B", "KB", "MB", "GB", "PB", "TB", "" }; local
850 while (strlen(postfix[i])) {
851 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(g->combo), postfix[i]);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 76 String postfix = MimeTypeMap.getFileExtensionFromUrl(src.toString()); local
78 if (postfix != null) {
79 ret = MimeTypeMap.getSingleton().getMimeTypeFromExtension(postfix);
  /external/chromium_org/third_party/brotli/src/brotli/dec/
decode.c 958 int postfix; local
961 postfix = distance_code & distance_postfix_mask;
967 distance_postfix_bits) + postfix;
    [all...]
  /external/clang/test/SemaCXX/
overloaded-operator.cpp 472 C<int> postfix; local
474 postfix--; // ok
  /external/deqp/modules/glshared/
glsShaderLibrary.cpp 1027 std::string postfix = ""; local
1035 postfix = m_curTokenStr;
1039 if (versionNum == 100 && postfix == "es") version = glu::GLSL_VERSION_100_ES;
1040 else if (versionNum == 300 && postfix == "es") version = glu::GLSL_VERSION_300_ES;
1041 else if (versionNum == 310 && postfix == "es") version = glu::GLSL_VERSION_310_ES;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_p2p.c 808 /* SSID Postfix */
963 char *postfix; local
968 postfix = os_strdup(entry.str_value);
969 if (!postfix)
973 wpa_s->conf->p2p_ssid_postfix = postfix;
    [all...]
  /external/chromium_org/third_party/libevent/
evdns.c 2502 const u8 *const postfix = ((u8 *) dom) + sizeof(struct search_domain); local
    [all...]
  /external/chromium_org/v8/src/
api.cc 3387 const char* postfix = "]"; local
    [all...]

Completed in 703 milliseconds

1 2