HomeSort by relevance Sort by last modified time
    Searched defs:fmt (Results 126 - 150 of 654) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_gmem.c 132 enum a5xx_depth_format fmt = fd5_pipe2depth(zsbuf->format); local
147 OUT_RING(ring, A5XX_RB_DEPTH_BUFFER_INFO_DEPTH_FORMAT(fmt));
158 OUT_RING(ring, A5XX_GRAS_SU_DEPTH_BUFFER_INFO_DEPTH_FORMAT(fmt));
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_tex.c 31 nv50_tic_swizzle(const struct nv50_format *fmt, unsigned swz, bool tex_int)
34 case PIPE_SWIZZLE_X : return fmt->tic.src_x;
35 case PIPE_SWIZZLE_Y: return fmt->tic.src_y;
36 case PIPE_SWIZZLE_Z : return fmt->tic.src_z;
37 case PIPE_SWIZZLE_W: return fmt->tic.src_w;
68 const struct nv50_format *fmt; local
96 fmt = &nv50_format_table[view->pipe.format];
100 swz[0] = nv50_tic_swizzle(fmt, view->pipe.swizzle_r, tex_int);
101 swz[1] = nv50_tic_swizzle(fmt, view->pipe.swizzle_g, tex_int);
102 swz[2] = nv50_tic_swizzle(fmt, view->pipe.swizzle_b, tex_int)
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_formats.c 52 #define fmt(__vk_fmt, __hw_fmt) \ macro
61 fmt(VK_FORMAT_UNDEFINED, ISL_FORMAT_UNSUPPORTED),
62 fmt(VK_FORMAT_R4G4_UNORM_PACK8, ISL_FORMAT_UNSUPPORTED),
63 fmt(VK_FORMAT_R4G4B4A4_UNORM_PACK16, ISL_FORMAT_A4B4G4R4_UNORM),
65 fmt(VK_FORMAT_R5G6B5_UNORM_PACK16, ISL_FORMAT_B5G6R5_UNORM),
67 fmt(VK_FORMAT_R5G5B5A1_UNORM_PACK16, ISL_FORMAT_A1B5G5R5_UNORM),
68 fmt(VK_FORMAT_B5G5R5A1_UNORM_PACK16, ISL_FORMAT_UNSUPPORTED),
69 fmt(VK_FORMAT_A1R5G5B5_UNORM_PACK16, ISL_FORMAT_B5G5R5A1_UNORM),
70 fmt(VK_FORMAT_R8_UNORM, ISL_FORMAT_R8_UNORM),
71 fmt(VK_FORMAT_R8_SNORM, ISL_FORMAT_R8_SNORM)
250 #undef fmt macro
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
ans.c 144 int *fmt; local
154 fmt = fmt_dcc;
158 fmt = fmt_e164;
164 for (i = 0; fmt[i]; i++) {
165 pos -= fmt[i];
166 for (j = 0; j < fmt[i]; j++)
  /external/python/cpython2/Lib/test/
test_traceback.py 225 def fmt(): function in function:TracebackFormatTests.test_format_stack
227 result = fmt()
228 lineno = fmt.__code__.co_firstlineno
229 file = fmt.__code__.co_filename
232 ' result = fmt()\n' % (file, lineno+2),
233 ' File "%s", line %d, in fmt\n'
  /external/python/cpython2/Tools/framer/framer/
function.py 10 def parsefmt(fmt):
11 for c in fmt:
45 fmt = None variable in class:_ArgumentList
81 def __init__(self, args, fmt=None):
84 if fmt is not None:
85 self.fmt = fmt
87 for code in parsefmt(fmt):
167 if self.args.fmt is not None:
168 v["ArgParse"] = self.args.fmt
    [all...]
  /external/strace/tests/
futex.c 113 const char *fmt; local
129 fmt = va_arg(ap, const char *);
135 printf(fmt, (unsigned) args[i]);
137 printf(fmt, args[i]);
  /external/strace/tests-m32/
futex.c 113 const char *fmt; local
129 fmt = va_arg(ap, const char *);
135 printf(fmt, (unsigned) args[i]);
137 printf(fmt, args[i]);
  /external/strace/tests-mx32/
futex.c 113 const char *fmt; local
129 fmt = va_arg(ap, const char *);
135 printf(fmt, (unsigned) args[i]);
137 printf(fmt, args[i]);
  /external/tcpdump/win32/src/
ether_ntohost.c 110 const char *fmt; local
124 fmt = "%02x:%02x:%02x:%02x:%02x:%02x";
126 fmt = "%02x-%02x-%02x-%02x-%02x-%02x";
128 if (sscanf(str, fmt, &eth[0], &eth[1], &eth[2], &eth[3], &eth[4], &eth[5]) != ETHER_ADDR_LEN)
  /external/webrtc/webrtc/common_audio/
wav_header.cc 35 // on sizeof(WavHeader::fmt): "error C2070: 'unknown': illegal sizeof operand".
53 FmtSubchunk fmt; member in struct:webrtc::__anon43981::WavHeader
164 WriteFourCC(&header.fmt.header.ID, 'f', 'm', 't', ' ');
165 WriteLE32(&header.fmt.header.Size, kFmtSubchunkSize);
166 WriteLE16(&header.fmt.AudioFormat, format);
167 WriteLE16(&header.fmt.NumChannels, static_cast<uint16_t>(num_channels));
168 WriteLE32(&header.fmt.SampleRate, sample_rate);
169 WriteLE32(&header.fmt.ByteRate, ByteRate(num_channels, sample_rate,
171 WriteLE16(&header.fmt.BlockAlign, BlockAlign(num_channels, bytes_per_sample));
172 WriteLE16(&header.fmt.BitsPerSample
    [all...]
  /external/webrtc/webrtc/modules/video_capture/linux/
video_capture_linux.cc 171 struct v4l2_fmtdesc fmt; local
173 memset(&fmt, 0, sizeof(fmt));
174 fmt.index = 0;
175 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
178 while (ioctl(_deviceFd, VIDIOC_ENUM_FMT, &fmt) == 0) {
181 fmt.pixelformat & 0xFF, (fmt.pixelformat>>8) & 0xFF,
182 (fmt.pixelformat>>16) & 0xFF, (fmt.pixelformat>>24) & 0xFF
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/utils/
PowerUtil.java 147 DateFormat fmt = DateFormat.getInstanceForSkeleton(skeleton); local
149 CharSequence timeString = fmt.format(date);
  /hardware/broadcom/libbt/include/
userial_vendor.h 98 uint16_t fmt; /* Data format */ member in struct:__anon46926
  /hardware/qcom/display/msm8084/liboverlay/pipes/
overlay3DPipe.h 223 // extract 3D fmt
230 ALOGE("M3DExtPipe Pipe fmt=%d", mM3Dfmt);
279 // extract 3D fmt
286 ALOGE("M3DPrimaryPipe Pipe fmt=%d", mM3Dfmt);
350 ALOGE("S3DExtPipe Pipe fmt=%d", mS3Dfmt);
381 uint32_t fmt = mS3Dfmt & utils::OUTPUT_3D_MASK; local
382 if(!utils::send3DInfoPacket(fmt)){
383 ALOGE("Error S3DExtPipe start error send3DInfoPacket %d", fmt);
406 0 /* fmt dont care*/);
459 ALOGE("S3DPrimaryPipe Pipe fmt=%d", mS3Dfmt)
    [all...]
  /hardware/qcom/display/msm8960/liboverlay/pipes/
overlay3DPipe.h 223 // extract 3D fmt
230 ALOGE("M3DExtPipe Pipe fmt=%d", mM3Dfmt);
279 // extract 3D fmt
286 ALOGE("M3DPrimaryPipe Pipe fmt=%d", mM3Dfmt);
350 ALOGE("S3DExtPipe Pipe fmt=%d", mS3Dfmt);
381 uint32_t fmt = mS3Dfmt & utils::OUTPUT_3D_MASK; local
382 if(!utils::send3DInfoPacket(fmt)){
383 ALOGE("Error S3DExtPipe start error send3DInfoPacket %d", fmt);
406 0 /* fmt dont care*/);
459 ALOGE("S3DPrimaryPipe Pipe fmt=%d", mS3Dfmt)
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/format/
TestZoneTextPrinterParser.java 192 DateTimeFormatter fmt = new DateTimeFormatterBuilder().appendZoneText(style, preferred) local
196 String ret = fmt.parse(text, TemporalQueries.zone()).getId();
210 DateTimeFormatter fmt = getFormatter(locale, style, ci); local
218 parse(fmt, zid, expected, zid, locale, style, ci);
221 parse(fmt, zid, expected, names[i], locale, style, ci);
226 private void parse(DateTimeFormatter fmt,
232 String ret = fmt.parse(text, TemporalQueries.zone()).getId();
  /packages/providers/CalendarProvider/
maketests.py 16 def fmt(n): function
63 return m.group(1) + m.group(2) + m.group(3) + "T" + fmt(hour) \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dsquery.h 46 INT fmt; member in struct:__anon64502
  /system/core/logd/
CommandListener.cpp 191 char fmt[32]; local
193 y = x, x = strlen(fmt) - 2) {
194 snprintf(fmt, sizeof(fmt), "%zu\n%%s\n\f", l + x);
196 return android::base::StringPrintf(fmt, str.c_str());
  /toolchain/binutils/binutils-2.27/opcodes/
xtensa-dis.c 142 xtensa_format fmt; local
195 fmt = xtensa_format_decode (isa, insn_buffer);
196 if (fmt == XTENSA_UNDEFINED
197 || ((size = xtensa_format_length (isa, fmt)) > bytes_fetched))
203 nslots = xtensa_format_num_slots (isa, fmt);
206 xtensa_format_get_slot (isa, fmt, n, insn_buffer, slot_buffer);
207 if (xtensa_opcode_decode (isa, fmt, n, slot_buffer)
233 xtensa_format_get_slot (isa, fmt, n, insn_buffer, slot_buffer);
234 opc = xtensa_opcode_decode (isa, fmt, n, slot_buffer);
252 (void) xtensa_operand_get_field (isa, opc, i, fmt, n
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
EthiopicTest.java 242 SimpleDateFormat fmt = new SimpleDateFormat("EEE MMM dd, yyyy GG"); local
243 fmt.setCalendar(new EthiopicCalendar());
246 assertEquals("Ethiopic Date", "Wed Jan 01, 0001 AD", fmt.format(cal));
250 assertEquals("Ethiopic Date", "Tue Jan 01, 5500 BC", fmt.format(cal));
261 fmt.setCalendar(new GregorianCalendar());
262 assertEquals("Gregorian Date", "Tue Aug 28, 0007 AD", fmt.format(gc));
JapaneseTest.java 114 DateFormat fmt = cal.getDateTimeFormat(DateFormat.FULL, DateFormat.FULL, Locale.ENGLISH); local
121 logln("date: " + fmt.format(cal.getTime()));
123 logln("date: " + fmt.format(cal.getTime()));
183 SimpleDateFormat fmt = new SimpleDateFormat("y", loc); local
189 aDate = fmt.parse(samplestr);
194 fmt.parse(samplestr, cal2, pp);
217 SimpleDateFormat fmt = (SimpleDateFormat)c.getDateTimeFormat(1,1,new ULocale("en_US@calendar=japanese")); local
218 fmt.applyPattern("G y");
219 logln("fmt's locale = " + fmt.getLocale(ULocale.ACTUAL_LOCALE))
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
EthiopicTest.java 239 SimpleDateFormat fmt = new SimpleDateFormat("EEE MMM dd, yyyy GG"); local
240 fmt.setCalendar(new EthiopicCalendar());
243 assertEquals("Ethiopic Date", "Wed Jan 01, 0001 AD", fmt.format(cal));
247 assertEquals("Ethiopic Date", "Tue Jan 01, 5500 BC", fmt.format(cal));
258 fmt.setCalendar(new GregorianCalendar());
259 assertEquals("Gregorian Date", "Tue Aug 28, 0007 AD", fmt.format(gc));
JapaneseTest.java 111 DateFormat fmt = cal.getDateTimeFormat(DateFormat.FULL, DateFormat.FULL, Locale.ENGLISH); local
118 logln("date: " + fmt.format(cal.getTime()));
120 logln("date: " + fmt.format(cal.getTime()));
180 SimpleDateFormat fmt = new SimpleDateFormat("y", loc); local
186 aDate = fmt.parse(samplestr);
191 fmt.parse(samplestr, cal2, pp);
214 SimpleDateFormat fmt = (SimpleDateFormat)c.getDateTimeFormat(1,1,new ULocale("en_US@calendar=japanese")); local
215 fmt.applyPattern("G y");
216 logln("fmt's locale = " + fmt.getLocale(ULocale.ACTUAL_LOCALE))
    [all...]

Completed in 691 milliseconds

1 2 3 4 56 7 8 91011>>