HomeSort by relevance Sort by last modified time
    Searched refs:c_value (Results 1 - 17 of 17) sorted by null

  /external/strace/tests/
xattr-strings.c 12 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));
xattr.c 43 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) - 1, XATTR_CREATE|XATTR_REPLACE)
    [all...]
  /external/strace/tests-m32/
xattr-strings.c 12 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));
xattr.c 43 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) - 1, XATTR_CREATE|XATTR_REPLACE)
    [all...]
  /external/strace/tests-mx32/
xattr-strings.c 12 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));
xattr.c 43 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) - 1, XATTR_CREATE|XATTR_REPLACE)
    [all...]
  /kernel/tests/net/test/
bpf.py 172 c_value = ctypes.c_uint32(value)
174 value_ptr = ctypes.addressof(c_value)
181 c_value = ctypes.c_uint32(0)
184 (map_fd, ctypes.addressof(c_key), ctypes.addressof(c_value), 0))
186 return c_value
  /frameworks/base/media/mca/filterfw/jni/
jni_util.cpp 104 const char* c_value = env->GetStringUTFChars(value, &isCopy); local
105 std::string result(c_value);
107 env->ReleaseStringUTFChars(value, c_value);
jni_shader_program.cpp 73 const Value c_value = ToCValue(env, value); local
75 if (c_value.value) {
76 return ToJBool(program && program->SetUniformValue(c_key, c_value));
jni_native_program.cpp 115 const std::string c_value = ToCppString(env, value); local
117 return ToJBool(program && program->CallSetValue(c_key, c_value));
  /external/v8/src/crankshaft/
hydrogen-check-elimination.cc 541 HConstant* c_value = HConstant::cast(instr->value());
542 HCheckTableEntry::State state = c_value->HasStableMapValue()
545 Insert(object, NULL, c_value->MapValue(), state);
hydrogen-instructions.cc 1614 HConstant* c_value = HConstant::cast(value()); local
    [all...]
hydrogen.cc 6466 HConstant* c_value = HConstant::cast(value); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 748 Py_ssize_t c_value; local
764 c_value = PyInt_AS_LONG((PyIntObject*)value);
769 "%" PY_FORMAT_SIZE_T "d\n", c_value);
778 if (c_value < 256) {
780 s[1] = (int)(c_value & 0xff);
785 s[1] = (int)(c_value & 0xff);
786 s[2] = (int)((c_value >> 8) & 0xff);
787 s[3] = (int)((c_value >> 16) & 0xff);
788 s[4] = (int)((c_value >> 24) & 0xff);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 718 long c_value; local
734 c_value = PyInt_AS_LONG((PyIntObject*)value);
738 PyOS_snprintf(s + 1, sizeof(s) - 1, "%ld\n", c_value);
747 if (c_value < 256) {
749 s[1] = (int)(c_value & 0xff);
754 s[1] = (int)(c_value & 0xff);
755 s[2] = (int)((c_value >> 8) & 0xff);
756 s[3] = (int)((c_value >> 16) & 0xff);
757 s[4] = (int)((c_value >> 24) & 0xff);
    [all...]
  /external/python/cpython2/Modules/
cPickle.c 746 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);
    [all...]
  /external/google-breakpad/src/common/windows/
pdb_source_line_writer.cc 877 unsigned int c_value = *c - '0'; local
879 value += c_value;
    [all...]

Completed in 1180 milliseconds