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

1 2 3 4

  /external/chromium_org/build/util/lib/common/
perf_result_data_type.py 15 def IsValidType(datatype):
16 return datatype in ALL_TYPES
19 def IsHistogram(datatype):
20 return (datatype == HISTOGRAM or datatype == UNIMPORTANT_HISTOGRAM)
  /external/clang/test/Sema/
128bitint.c 28 void pointer_with_type_tag_arg_num_1(void *buf, int datatype)
31 void pointer_with_type_tag_arg_num_2(void *buf, int datatype)
34 void MPI_Send(void *buf, int datatype) __attribute__(( pointer_with_type_tag(mpi,1,2) ));
warn-type-safety.cpp 24 void f1(void *buf, int count, MPI_Datatype datatype)
27 void f2(void *buf, int count, MPI_Datatype datatype)
30 void f3(void *buf, int count, MPI_Datatype datatype)
33 void f4(void *buf, int count, MPI_Datatype datatype)
36 void MPI_Send(void *buf, int count, MPI_Datatype datatype)
42 void value_dep(void *buf, int count, MPI_Datatype datatype)
warn-type-safety.c 9 int wrong1(void *buf, MPI_Datatype datatype)
12 int wrong2(void *buf, MPI_Datatype datatype)
15 int wrong3(void *buf, MPI_Datatype datatype)
18 int wrong4(void *buf, MPI_Datatype datatype)
21 int wrong5(void *buf, MPI_Datatype datatype)
24 int wrong6(void *buf, MPI_Datatype datatype)
29 int wrong7(void *buf, MPI_Datatype datatype)
32 int wrong8(void *buf, MPI_Datatype datatype)
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
formats.c 55 GLenum DataType;
86 GL_NONE, /* DataType */
95 GL_UNSIGNED_NORMALIZED, /* DataType */
104 GL_UNSIGNED_NORMALIZED, /* DataType */
113 GL_UNSIGNED_NORMALIZED, /* DataType */
122 GL_UNSIGNED_NORMALIZED, /* DataType */
131 GL_UNSIGNED_NORMALIZED, /* DataType */
140 GL_UNSIGNED_NORMALIZED, /* DataType */
149 GL_UNSIGNED_NORMALIZED, /* DataType */
158 GL_UNSIGNED_NORMALIZED, /* DataType */
1955 GLenum datatype = 0; local
    [all...]
mipmap.c 53 bytes_per_pixel(GLenum datatype, GLuint comps)
57 if (datatype == GL_UNSIGNED_INT_8_24_REV_MESA ||
58 datatype == GL_UNSIGNED_INT_24_8_MESA)
61 b = _mesa_sizeof_packed_type(datatype);
64 if (_mesa_type_is_packed(datatype))
152 * \param datatype GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, GL_FLOAT, etc.
156 do_row(GLenum datatype, GLuint comps, GLint srcWidth,
170 if (datatype == GL_UNSIGNED_BYTE && comps == 4) {
183 else if (datatype == GL_UNSIGNED_BYTE && comps == 3) {
195 else if (datatype == GL_UNSIGNED_BYTE && comps == 2)
1896 GLenum datatype; local
    [all...]
mipmap.h 34 GLenum datatype, GLuint comps,
  /external/mesa3d/src/mesa/main/
formats.c 55 GLenum DataType;
86 GL_NONE, /* DataType */
95 GL_UNSIGNED_NORMALIZED, /* DataType */
104 GL_UNSIGNED_NORMALIZED, /* DataType */
113 GL_UNSIGNED_NORMALIZED, /* DataType */
122 GL_UNSIGNED_NORMALIZED, /* DataType */
131 GL_UNSIGNED_NORMALIZED, /* DataType */
140 GL_UNSIGNED_NORMALIZED, /* DataType */
149 GL_UNSIGNED_NORMALIZED, /* DataType */
158 GL_UNSIGNED_NORMALIZED, /* DataType */
1955 GLenum datatype = 0; local
    [all...]
mipmap.c 46 bytes_per_pixel(GLenum datatype, GLuint comps)
50 if (datatype == GL_UNSIGNED_INT_8_24_REV_MESA ||
51 datatype == GL_UNSIGNED_INT_24_8_MESA)
54 b = _mesa_sizeof_packed_type(datatype);
57 if (_mesa_type_is_packed(datatype))
145 * \param datatype GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, GL_FLOAT, etc.
149 do_row(GLenum datatype, GLuint comps, GLint srcWidth,
163 if (datatype == GL_UNSIGNED_BYTE && comps == 4) {
176 else if (datatype == GL_UNSIGNED_BYTE && comps == 3) {
188 else if (datatype == GL_UNSIGNED_BYTE && comps == 2)
1889 GLenum datatype; local
    [all...]
mipmap.h 34 GLenum datatype, GLuint comps,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
path_utils.h 37 static INLINE VGint size_for_datatype(VGPathDatatype datatype)
39 switch(datatype) {
49 assert(!"unknown datatype");
  /external/mesa3d/src/gallium/state_trackers/vega/
path_utils.h 37 static INLINE VGint size_for_datatype(VGPathDatatype datatype)
39 switch(datatype) {
49 assert(!"unknown datatype");
  /external/chromium_org/sync/util/
data_type_histogram.h 18 // Helper macro for datatype specific histograms. For each datatype, invokes
20 // version of the datatype.
36 #define SYNC_DATA_TYPE_HISTOGRAM(datatype) \
38 switch (datatype) { \
130 NOTREACHED() << "Unknown datatype " \
131 << ::syncer::ModelTypeToString(datatype); \
  /external/chromium_org/chrome/browser/sync/test/integration/
profile_sync_service_harness.cc 299 syncer::ModelType datatype) {
302 + std::string(syncer::ModelTypeToString(datatype)) + ")");
305 return SetupSync(syncer::ModelTypeSet(datatype));
313 if (synced_datatypes.Has(datatype)) {
314 DVLOG(1) << "EnableSyncForDatatype(): Sync already enabled for datatype "
315 << syncer::ModelTypeToString(datatype)
320 synced_datatypes.Put(syncer::ModelTypeFromInt(datatype));
323 DVLOG(1) << "EnableSyncForDatatype(): Enabled sync for datatype "
324 << syncer::ModelTypeToString(datatype)
334 syncer::ModelType datatype) {
    [all...]
profile_sync_service_harness.h 74 // Enables sync for a particular sync datatype. Returns true on success.
75 bool EnableSyncForDatatype(syncer::ModelType datatype);
77 // Disables sync for a particular sync datatype. Returns true on success.
78 bool DisableSyncForDatatype(syncer::ModelType datatype);
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_parameter.h 75 GLenum DataType; /**< GL_FLOAT, GL_FLOAT_VEC2, etc */
131 GLuint size, GLenum datatype,
148 GLenum datatype, GLuint *swizzleOut);
157 const char *name, GLuint size, GLenum datatype,
162 const char *name, GLint size, GLenum datatype, GLint attrib);
prog_parameter.c 103 * \param datatype GL_FLOAT, GL_FLOAT_VECx, GL_INT, GL_INT_VECx or GL_NONE.
111 GLuint size, GLenum datatype,
158 p->DataType = datatype;
257 GLenum datatype, GLuint *swizzleOut)
290 size, datatype, values, NULL, 0x0);
327 const char *name, GLuint size, GLenum datatype,
338 size, datatype, NULL, NULL, flags);
351 const char *name, GLint size, GLenum datatype, GLint attrib)
367 size, datatype, NULL, state, 0x0)
    [all...]
  /external/mesa3d/src/mesa/program/
prog_parameter.h 75 GLenum DataType; /**< GL_FLOAT, GL_FLOAT_VEC2, etc */
131 GLuint size, GLenum datatype,
148 GLenum datatype, GLuint *swizzleOut);
157 const char *name, GLuint size, GLenum datatype,
162 const char *name, GLint size, GLenum datatype, GLint attrib);
prog_parameter.c 103 * \param datatype GL_FLOAT, GL_FLOAT_VECx, GL_INT, GL_INT_VECx or GL_NONE.
111 GLuint size, GLenum datatype,
158 p->DataType = datatype;
246 GLenum datatype, GLuint *swizzleOut)
279 size, datatype, values, NULL, 0x0);
316 const char *name, GLuint size, GLenum datatype,
327 size, datatype, NULL, NULL, flags);
340 const char *name, GLint size, GLenum datatype, GLint attrib)
356 size, datatype, NULL, state, 0x0)
    [all...]
  /external/chromium_org/base/android/jni_generator/
jni_generator_tests.py 162 params=[Param(datatype='int',
168 params=[Param(datatype='int',
170 Param(datatype='String',
172 Param(datatype='String',
174 Param(datatype='boolean',
176 Param(datatype='long',
183 params=[Param(datatype='String',
189 params=[Param(datatype='byte[]',
191 Param(datatype='int',
197 params=[Param(datatype='View', name='view')]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_gen_mipmap.c 165 * \param datatype GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, GL_FLOAT, etc.
169 do_row(enum dtype datatype, uint comps, int srcWidth,
183 if (datatype == DTYPE_UBYTE && comps == 4) {
196 else if (datatype == DTYPE_UBYTE && comps == 3) {
208 else if (datatype == DTYPE_UBYTE && comps == 2) {
219 else if (datatype == DTYPE_UBYTE && comps == 1) {
230 else if (datatype == DTYPE_USHORT && comps == 4) {
243 else if (datatype == DTYPE_USHORT && comps == 3) {
255 else if (datatype == DTYPE_USHORT && comps == 2) {
266 else if (datatype == DTYPE_USHORT && comps == 1)
965 enum dtype datatype; local
987 enum dtype datatype; local
1031 enum dtype datatype; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_gen_mipmap.c 165 * \param datatype GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, GL_FLOAT, etc.
169 do_row(enum dtype datatype, uint comps, int srcWidth,
183 if (datatype == DTYPE_UBYTE && comps == 4) {
196 else if (datatype == DTYPE_UBYTE && comps == 3) {
208 else if (datatype == DTYPE_UBYTE && comps == 2) {
219 else if (datatype == DTYPE_UBYTE && comps == 1) {
230 else if (datatype == DTYPE_USHORT && comps == 4) {
243 else if (datatype == DTYPE_USHORT && comps == 3) {
255 else if (datatype == DTYPE_USHORT && comps == 2) {
266 else if (datatype == DTYPE_USHORT && comps == 1)
965 enum dtype datatype; local
987 enum dtype datatype; local
1031 enum dtype datatype; local
    [all...]
  /external/opencv/cxcore/src/
cxdxt.cpp     [all...]
  /external/chromium_org/sync/tools/testserver/
chromiumsync.py 107 # to that datatype. Note that TOP_LEVEL has no such token.
337 sync_type: A value from ALL_TYPES, giving the datatype of this permanent
358 that had synced the datatype before the event. Such clients will continue
360 re-sync that datatype from the beginning.
364 for datatype in ALL_TYPES:
365 self._migrations[datatype] = [1]
368 def GetLatestVersion(self, datatype):
369 return self._migrations[datatype][-1]
385 for datatype, client_migration in versions_map.iteritems():
386 for server_migration in self._migrations[datatype]
    [all...]
  /external/chromium_org/sync/internal_api/
debug_info_event_listener.h 25 // In order to track datatype association results, we need at least as many
75 void OnNudgeFromDatatype(ModelType datatype);

Completed in 877 milliseconds

1 2 3 4