Searched defs:c_value (Results 1 - 10 of 10) sorted by relevance

/external/strace/tests/
H A Dxattr-strings.c12 static const char c_value[] = "foobar"; local
14 const char *const z_value = tail_memdup(c_value, sizeof(c_value));
17 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
19 4, name, 4, c_value, (unsigned) sizeof(c_value), sprintrc(rc));
H A Dxattr.c43 static const char c_value[] = "foo\0bar"; local
46 const char *const z_value = tail_memdup(c_value, sizeof(c_value));
48 const char *const value = tail_memdup(c_value, sizeof(c_value) - 1);
65 rc = fsetxattr(-1, name, value, sizeof(c_value), XATTR_CREATE);
67 name, value, (unsigned) sizeof(c_value), sprintrc(rc));
69 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
71 name, q_value, (unsigned) sizeof(c_value), sprintrc(rc));
73 rc = fsetxattr(-1, name, value, sizeof(c_value)
[all...]
/external/strace/tests-m32/
H A Dxattr-strings.c12 static const char c_value[] = "foobar"; local
14 const char *const z_value = tail_memdup(c_value, sizeof(c_value));
17 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
19 4, name, 4, c_value, (unsigned) sizeof(c_value), sprintrc(rc));
H A Dxattr.c43 static const char c_value[] = "foo\0bar"; local
46 const char *const z_value = tail_memdup(c_value, sizeof(c_value));
48 const char *const value = tail_memdup(c_value, sizeof(c_value) - 1);
65 rc = fsetxattr(-1, name, value, sizeof(c_value), XATTR_CREATE);
67 name, value, (unsigned) sizeof(c_value), sprintrc(rc));
69 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
71 name, q_value, (unsigned) sizeof(c_value), sprintrc(rc));
73 rc = fsetxattr(-1, name, value, sizeof(c_value)
[all...]
/external/strace/tests-mx32/
H A Dxattr-strings.c12 static const char c_value[] = "foobar"; local
14 const char *const z_value = tail_memdup(c_value, sizeof(c_value));
17 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
19 4, name, 4, c_value, (unsigned) sizeof(c_value), sprintrc(rc));
H A Dxattr.c43 static const char c_value[] = "foo\0bar"; local
46 const char *const z_value = tail_memdup(c_value, sizeof(c_value));
48 const char *const value = tail_memdup(c_value, sizeof(c_value) - 1);
65 rc = fsetxattr(-1, name, value, sizeof(c_value), XATTR_CREATE);
67 name, value, (unsigned) sizeof(c_value), sprintrc(rc));
69 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
71 name, q_value, (unsigned) sizeof(c_value), sprintrc(rc));
73 rc = fsetxattr(-1, name, value, sizeof(c_value)
[all...]
/external/google-breakpad/src/common/windows/
H A Dpdb_source_line_writer.cc877 unsigned int c_value = *c - '0'; local
879 value += c_value;
/external/python/cpython2/Modules/
H A DcPickle.c746 Py_ssize_t c_value; local
762 c_value = PyInt_AS_LONG((PyIntObject*)value);
767 "%" PY_FORMAT_SIZE_T "d\n", c_value);
776 if (c_value < 256) {
778 s[1] = (int)(c_value & 0xff);
783 s[1] = (int)(c_value & 0xff);
784 s[2] = (int)((c_value >> 8) & 0xff);
785 s[3] = (int)((c_value >> 16) & 0xff);
786 s[4] = (int)((c_value >> 24) & 0xff);
/external/v8/src/crankshaft/
H A Dhydrogen-instructions.cc1614 HConstant* c_value = HConstant::cast(value()); local
1615 if (c_value->HasObjectMap()) {
1617 if (c_value->ObjectMap() == maps()->at(i)) {
H A Dhydrogen.cc6466 HConstant* c_value = HConstant::cast(value); local
6467 if (!constant.is_identical_to(c_value->handle(isolate()))) {

Completed in 344 milliseconds