Searched refs:NULL (Results 76 - 100 of 26802) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_condattr_destroy.c72 if (attr == NULL || *attr == NULL)
80 *attr = NULL;
H A Dpthread_condattr_getpshared.c85 if ((attr != NULL && *attr != NULL) && (pshared != NULL))
H A Dpthread_mutexattr_destroy.c70 if (attr == NULL || *attr == NULL)
78 *attr = NULL;
H A Dpthread_mutexattr_getpshared.c83 if ((attr != NULL && *attr != NULL) && (pshared != NULL))
H A Dpthread_mutexattr_getrobust.c106 if ((attr != NULL && *attr != NULL && robust != NULL))
H A Dpthread_mutexattr_gettype.c46 if (attr != NULL && *attr != NULL && kind != NULL)
H A Dpthread_rwlockattr_destroy.c71 if (attr == NULL || *attr == NULL)
79 *attr = NULL;
H A Dpthread_rwlockattr_getpshared.c85 if ((attr != NULL && *attr != NULL) && (pshared != NULL))
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
H A Dstw_ext_gallium.c38 return stw_dev ? stw_dev->screen : NULL;
47 return NULL;
49 return stw_dev->screen->context_create( stw_dev->screen, NULL );
/external/chromium_org/tools/clang/rewrite_scoped_ptr_ctor_null/tests/
H A Dtest-original.cc8 scoped_ptr<int> a(NULL), b(new int), c(NULL);
9 scoped_ptr_malloc<int> d(NULL);
13 scoped_ptr<int>* a = new scoped_ptr<int>(NULL),
15 *c = new scoped_ptr<int>(NULL);
20 TestInitializers() : a(NULL) {}
21 TestInitializers(bool) : a(NULL), b(NULL), e(NULL) {}
23 : a(NULL),
[all...]
/external/chromium_org/ui/gfx/
H A Dplatform_font_ozone.cc11 return NULL;
16 return NULL;
22 return NULL;
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_ext_gallium.c38 return stw_dev ? stw_dev->screen : NULL;
47 return NULL;
49 return stw_dev->screen->context_create( stw_dev->screen, NULL );
/external/oprofile/libutil/
H A Dop_popt.h20 #define POPT_TABLEEND { NULL, '\0', 0, 0, 0, NULL, NULL }
/external/valgrind/main/memcheck/tests/
H A Dexecve1.c5 char* null_filename = NULL;
6 char* bad[2] = { (char*)1, NULL };
7 char* good[1] = { NULL };
/external/libsepol/tests/
H A Dtest-expander-attr-map.c68 test_attr_types(&base_expanded2, "attr_check_base_1", NULL, typesb1, 2);
69 test_attr_types(&base_expanded2, "attr_check_base_2", NULL, typesb2, 2);
70 test_attr_types(&base_expanded2, "attr_check_base_3", NULL, typesb3, 4);
71 test_attr_types(&base_expanded2, "attr_check_base_4", NULL, typesb4, 2);
72 test_attr_types(&base_expanded2, "attr_check_base_5", NULL, typesb5, 2);
73 test_attr_types(&base_expanded2, "attr_check_base_6", NULL, typesb6, 4);
74 test_attr_types(&base_expanded2, "attr_check_base_optional_2", NULL, typesbo2, 2);
75 test_attr_types(&base_expanded2, "attr_check_base_optional_5", NULL, typesbo5, 2);
76 test_attr_types(&base_expanded2, "attr_check_mod_2", NULL, typesm2, 2);
77 test_attr_types(&base_expanded2, "attr_check_mod_4", NULL, typesm
[all...]
/external/speex/libspeex/
H A Dmodes_wb.c51 #ifndef NULL
52 #define NULL 0 macro
93 NULL,
94 NULL,
95 NULL,
97 NULL,
98 NULL,
99 NULL,
114 NULL,
115 NULL,
[all...]
/external/marisa-trie/tests/
H A Dc-test.c8 marisa_trie *trie = NULL;
15 ASSERT(marisa_end(NULL) == MARISA_HANDLE_ERROR);
17 ASSERT(marisa_build(NULL, NULL, 0, NULL, NULL, NULL, 0) ==
20 ASSERT(marisa_mmap(NULL, NULL, 0, 0) == MARISA_HANDLE_ERROR);
21 ASSERT(marisa_map(NULL, NUL
[all...]
/external/marisa-trie/v0_1_5/tests/
H A Dc-test.c8 marisa_alpha_trie *trie = NULL;
15 ASSERT(marisa_alpha_end(NULL) == MARISA_ALPHA_HANDLE_ERROR);
17 ASSERT(marisa_alpha_build(NULL, NULL, 0, NULL, NULL, NULL, 0) ==
20 ASSERT(marisa_alpha_mmap(NULL, NULL, 0, 0) == MARISA_ALPHA_HANDLE_ERROR);
21 ASSERT(marisa_alpha_map(NULL, NUL
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dmoduleimpl.cc34 engine_(NULL),
40 if (engine_ != NULL) {
42 engine_ = NULL;
49 if (NULL == engine || NULL != engine_)
60 ASSERT(NULL != engine_);
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkHRESULT.cpp14 SkDEBUGCODE(if (NULL != msg) SkDEBUGF(("%s\n", msg)));
17 LPSTR errorText = NULL;
21 NULL,
26 NULL
29 if (NULL == errorText) {
34 errorText = NULL;
/external/chromium_org/ui/gl/
H A Dgl_image_ozone.cc18 return NULL;
20 return NULL;
25 return NULL;
36 return NULL;
38 return NULL;
43 return NULL;
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Dltc_ecc_points.c28 @return A newly allocated point or NULL on error
34 if (p == NULL) {
35 return NULL;
37 if (mp_init_multi(&p->x, &p->y, &p->z, NULL) != CRYPT_OK) {
39 return NULL;
50 if (p != NULL) {
51 mp_clear_multi(p->x, p->y, p->z, NULL); /* note: p->z may be NULL but that's ok with this function anyways */
/external/skia/src/utils/win/
H A DSkHRESULT.cpp14 SkDEBUGCODE(if (NULL != msg) SkDEBUGF(("%s\n", msg)));
17 LPSTR errorText = NULL;
21 NULL,
26 NULL
29 if (NULL == errorText) {
34 errorText = NULL;
/external/valgrind/main/helgrind/tests/
H A Dhg01_all_ok.c25 pthread_create(&a, NULL, th, NULL);
26 pthread_create(&b, NULL, th, NULL);
28 pthread_join(a, NULL);
29 pthread_join(b, NULL);
H A Dhg06_readshared.c24 pthread_create(&a, NULL, t1, NULL);
25 pthread_create(&b, NULL, t2, NULL);
27 pthread_join(a, NULL);
28 pthread_join(b, NULL);

Completed in 493 milliseconds

1234567891011>>