HomeSort by relevance Sort by last modified time
    Searched refs:value_ptr (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_exit.c 45 pthread_exit (void *value_ptr)
50 * the value 'value_ptr' to any joining thread.
53 * value_ptr
59 * the value 'value_ptr' to any joining thread.
78 exit ((int) value_ptr);
92 _endthreadex ((unsigned) (size_t) value_ptr);
100 sp->exitStatus = value_ptr;
pthread_join.c 51 pthread_join (pthread_t thread, void **value_ptr)
56 * returns the thread's exit value if 'value_ptr' is not
64 * value_ptr
70 * returns the thread's exit value if 'value_ptr' is not
136 if (value_ptr != NULL)
138 *value_ptr = tp->exitStatus;
  /external/webrtc/src/common_audio/vad/
vad_sp.c 72 int16_t* value_ptr = &self->low_value_vector[offset]; local
84 p1 = value_ptr + i + 1;
87 *(value_ptr + j) = *p1++;
91 *(value_ptr + 15) = 10000;
98 if (feature_value < *(value_ptr + 7)) {
99 if (feature_value < *(value_ptr + 3)) {
100 if (feature_value < *(value_ptr + 1)) {
101 if (feature_value < *value_ptr) {
106 } else if (feature_value < *(value_ptr + 2)) {
111 } else if (feature_value < *(value_ptr + 5))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/
SDL_error_c.h 48 void *value_ptr; member in union:SDL_error::__anon13071
SDL_error.c 86 error->args[error->argc++].value_ptr =
166 len = SDL_snprintf(msg, maxlen, tmp, error->args[argi++].value_ptr);
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Thread.h 41 void Exynos_OSAL_ThreadExit(void *value_ptr);
Exynos_OSAL_Thread.c 148 void Exynos_OSAL_ThreadExit(void *value_ptr)
150 pthread_exit(value_ptr);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_pthread_wrappers.h 54 inline void PTHREAD_JOIN(pthread_t thread, void **value_ptr) {
55 ASSERT_EQ(0, value_ptr) << "Nonzero value_ptr is not supported yet.";
  /external/llvm/lib/Support/
DataExtractor.cpp 38 for (T *value_ptr = dst, *end = dst + count; value_ptr != end;
39 ++value_ptr, offset += sizeof(*dst))
40 *value_ptr = getU<T>(offset_ptr, de, isLittleEndian, Data);
  /external/chromium_org/chrome/browser/content_settings/
content_settings_provider_unittest.cc 31 scoped_ptr<base::Value> value_ptr(
36 value_ptr->GetAsInteger(&int_value);
content_settings_policy_provider_unittest.cc 174 scoped_ptr<base::Value> value_ptr(
183 value_ptr->GetAsInteger(&int_value);
  /external/webrtc/src/system_wrappers/source/
map_unittest.cc 31 int* value_ptr = ItemPointer(item); local
32 delete value_ptr;
40 const int* value_ptr = ItemPointer(item); local
41 if (value_ptr == 0) {
44 return *value_ptr;
  /external/chromium_org/base/prefs/
pref_value_map.cc 43 scoped_ptr<base::Value> value_ptr(value);
49 entry->second = value_ptr.release();
51 prefs_[key] = value_ptr.release();
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/socket/
socket_node.cc 235 void* value_ptr = NULL; local
242 value_ptr = &value;
246 value_ptr = &linger_;
251 value_ptr = &value;
255 value_ptr = &last_errno_;
264 memcpy(optval, value_ptr, copy_bytes);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_thread.h 61 static INLINE int pthread_join(pthread_t thread, void** value_ptr) {
62 (void)value_ptr;
  /external/libvpx/libvpx/vp9/decoder/
vp9_thread.h 62 static INLINE int pthread_join(pthread_t thread, void** value_ptr) {
63 (void)value_ptr;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_thread.h 62 static INLINE int pthread_join(pthread_t thread, void** value_ptr) {
63 (void)value_ptr;
  /external/chromium_org/chrome/browser/ui/webui/
policy_ui_browsertest.cc 149 scoped_ptr<base::Value> value_ptr(base::JSONReader::Read(json));
151 ASSERT_TRUE(value_ptr.get());
152 ASSERT_TRUE(value_ptr->GetAsList(&actual_policies));
  /external/bluetooth/bluedroid/stack/sdp/
sdp_db.c 83 if (sdpu_compare_uuid_arrays (p_attr->value_ptr, p_attr->len,
90 if (find_uuid_in_seq (p_attr->value_ptr, p_attr->len,
361 p_rec->attribute[zz].value_ptr -= sizeof(tSDP_RECORD);
496 p_attr->value_ptr = &p_rec->attr_pad[p_rec->free_pad_ptr];
917 pad_ptr = p_attr->value_ptr;
924 if( p_rec->attribute[yy].value_ptr > pad_ptr
    [all...]
sdp_api.c     [all...]
  /external/chromium_org/sandbox/win/src/
policy_engine_opcodes.cc 144 const void* value_ptr = NULL; local
145 if (param->Get(&value_ptr)) {
148 return (match_ptr != value_ptr)? EVAL_FALSE : EVAL_TRUE;
  /ndk/sources/host-tools/make-3.81/
main.c 111 char *value_ptr; /* Pointer to the value-holding variable. */
110 char *value_ptr; \/* Pointer to the value-holding variable. *\/ member in struct:command_switch
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
thread.c 69 static int pthread_join(pthread_t thread, void** value_ptr) {
70 (void)value_ptr;
  /external/webp/src/utils/
thread.c 69 static int pthread_join(pthread_t thread, void** value_ptr) {
70 (void)value_ptr;
  /external/chromium_org/chrome/browser/chromeos/policy/
device_local_account_browsertest.cc     [all...]

Completed in 601 milliseconds

1 2