OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:H5T_NATIVE_CHAR
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/Sema/
warn-type-safety-mpi-hdf5.c
110
#define
H5T_NATIVE_CHAR
(CHAR_MIN?H5T_NATIVE_SCHAR:H5T_NATIVE_UCHAR)
295
H5Dwrite(
H5T_NATIVE_CHAR
, char_buf); // no-warning
297
H5Dwrite(
H5T_NATIVE_CHAR
, schar_buf); // expected-warning {{argument type 'signed char *' doesn't match specified 'hdf5' type tag that requires 'unsigned char *'}}
298
H5Dwrite(
H5T_NATIVE_CHAR
, uchar_buf); // no-warning
300
H5Dwrite(
H5T_NATIVE_CHAR
, schar_buf); // no-warning
301
H5Dwrite(
H5T_NATIVE_CHAR
, uchar_buf); // expected-warning {{argument type 'unsigned char *' doesn't match specified 'hdf5' type tag that requires 'signed char *'}}
309
H5Dwrite(
H5T_NATIVE_CHAR
, int_buf); // expected-warning {{argument type 'int *' doesn't match specified 'hdf5' type tag that requires 'unsigned char *'}}
311
H5Dwrite(
H5T_NATIVE_CHAR
, int_buf); // expected-warning {{argument type 'int *' doesn't match specified 'hdf5' type tag that requires 'signed char *'}}
/external/opencv3/modules/flann/include/opencv2/flann/
hdf5.h
51
hid_t get_hdf5_type<char>() { return
H5T_NATIVE_CHAR
; }
Completed in 220 milliseconds