Home
last modified time | relevance | path

Searched refs:wide (Results 1 – 25 of 706) sorted by relevance

12345678910>>...29

/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pipe_wide_point.c94 static void set_texcoords(const struct widepoint_stage *wide, in set_texcoords() argument
97 const struct draw_context *draw = wide->stage.draw; in set_texcoords()
102 for (i = 0; i < wide->num_texcoord_gen; i++) { in set_texcoords()
103 const uint slot = wide->texcoord_gen_slot[i]; in set_texcoords()
123 const struct widepoint_stage *wide = widepoint_stage(stage); in widepoint_point() local
143 if (wide->psize_slot >= 0) { in widepoint_point()
144 half_size = header->v[0]->data[wide->psize_slot][0]; in widepoint_point()
148 half_size = wide->half_point_size; in widepoint_point()
151 left_adj = -half_size + wide->xbias; in widepoint_point()
152 right_adj = half_size + wide->xbias; in widepoint_point()
[all …]
Ddraw_pipe_wide_line.c204 struct wideline_stage *wide = CALLOC_STRUCT(wideline_stage); in draw_wide_line_stage() local
205 if (wide == NULL) in draw_wide_line_stage()
208 wide->stage.draw = draw; in draw_wide_line_stage()
209 wide->stage.name = "wide-line"; in draw_wide_line_stage()
210 wide->stage.next = NULL; in draw_wide_line_stage()
211 wide->stage.point = draw_pipe_passthrough_point; in draw_wide_line_stage()
212 wide->stage.line = wideline_first_line; in draw_wide_line_stage()
213 wide->stage.tri = draw_pipe_passthrough_tri; in draw_wide_line_stage()
214 wide->stage.flush = wideline_flush; in draw_wide_line_stage()
215 wide->stage.reset_stipple_counter = wideline_reset_stipple_counter; in draw_wide_line_stage()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
Ddraw_pipe_wide_point.c94 static void set_texcoords(const struct widepoint_stage *wide, in set_texcoords() argument
97 const struct draw_context *draw = wide->stage.draw; in set_texcoords()
102 for (i = 0; i < wide->num_texcoord_gen; i++) { in set_texcoords()
103 const uint slot = wide->texcoord_gen_slot[i]; in set_texcoords()
123 const struct widepoint_stage *wide = widepoint_stage(stage); in widepoint_point() local
143 if (wide->psize_slot >= 0) { in widepoint_point()
144 half_size = header->v[0]->data[wide->psize_slot][0]; in widepoint_point()
148 half_size = wide->half_point_size; in widepoint_point()
151 left_adj = -half_size + wide->xbias; in widepoint_point()
152 right_adj = half_size + wide->xbias; in widepoint_point()
[all …]
Ddraw_pipe_wide_line.c204 struct wideline_stage *wide = CALLOC_STRUCT(wideline_stage); in draw_wide_line_stage() local
205 if (wide == NULL) in draw_wide_line_stage()
208 wide->stage.draw = draw; in draw_wide_line_stage()
209 wide->stage.name = "wide-line"; in draw_wide_line_stage()
210 wide->stage.next = NULL; in draw_wide_line_stage()
211 wide->stage.point = draw_pipe_passthrough_point; in draw_wide_line_stage()
212 wide->stage.line = wideline_first_line; in draw_wide_line_stage()
213 wide->stage.tri = draw_pipe_passthrough_tri; in draw_wide_line_stage()
214 wide->stage.flush = wideline_flush; in draw_wide_line_stage()
215 wide->stage.reset_stipple_counter = wideline_reset_stipple_counter; in draw_wide_line_stage()
[all …]
/external/qemu/distrib/sdl-1.2.15/src/timer/macos/
DFastTimes.c146 UnsignedWide wide; in FastInitialize() local
152 wide = (gUpTime) ? (*gA2NS)((*gUpTime)()) : in FastInitialize()
154 usec1 = (gUseRTC) ? RTCToNano(wide) : WideTo64bit(wide); in FastInitialize()
160 wide = (gUpTime) ? (*gA2NS)((*gUpTime)()) : in FastInitialize()
162 usec2 = (gUseRTC) ? RTCToNano(wide) : WideTo64bit(wide); in FastInitialize()
181 UnsignedWide wide; in FastMicroseconds() local
190 wide = (*gA2NS)((*gUpTime)()); in FastMicroseconds()
191 usec = (double) WideTo64bit(wide) * gScaleUSec + 0.5; in FastMicroseconds()
195 wide = (*gA2NS)((*gUpTime)()); in FastMicroseconds()
196 usec = (double) WideTo64bit(wide) * gScaleUSec + 0.5; in FastMicroseconds()
[all …]
/external/chromium/base/
Dsys_string_conversions_win.cc14 std::string SysWideToUTF8(const std::wstring& wide) { in SysWideToUTF8() argument
15 return SysWideToMultiByte(wide, CP_UTF8); in SysWideToUTF8()
23 std::string SysWideToNativeMB(const std::wstring& wide) { in SysWideToNativeMB() argument
24 return SysWideToMultiByte(wide, CP_ACP); in SysWideToNativeMB()
43 std::wstring wide; in SysMultiByteToWide() local
44 wide.resize(charcount); in SysMultiByteToWide()
45 MultiByteToWideChar(code_page, 0, mb.data(), mb_length, &wide[0], charcount); in SysMultiByteToWide()
47 return wide; in SysMultiByteToWide()
51 std::string SysWideToMultiByte(const std::wstring& wide, uint32 code_page) { in SysWideToMultiByte() argument
52 int wide_length = static_cast<int>(wide.length()); in SysWideToMultiByte()
[all …]
Dsys_string_conversions_unittest.cc184 std::wstring wide = kConvertRoundtripCases[i]; in TEST() local
185 std::wstring trip = base::SysNativeMBToWide(base::SysWideToNativeMB(wide)); in TEST()
186 EXPECT_EQ(wide.size(), trip.size()); in TEST()
187 EXPECT_EQ(wide, trip); in TEST()
192 std::wstring wide = kConvertRoundtripCases[i]; in TEST() local
193 std::wstring trip = base::SysNativeMBToWide(WideToUTF8(wide)); in TEST()
194 EXPECT_EQ(wide.size(), trip.size()); in TEST()
195 EXPECT_EQ(wide, trip); in TEST()
199 std::wstring wide = kConvertRoundtripCases[i]; in TEST() local
200 std::wstring trip = UTF8ToWide(base::SysWideToNativeMB(wide)); in TEST()
[all …]
Dsys_string_conversions_linux.cc14 std::string SysWideToUTF8(const std::wstring& wide) { in SysWideToUTF8() argument
17 return WideToUTF8(wide); in SysWideToUTF8()
30 std::string SysWideToNativeMB(const std::wstring& wide) { in SysWideToNativeMB() argument
31 return WideToUTF8(wide); in SysWideToNativeMB()
40 std::string SysWideToNativeMB(const std::wstring& wide) { in SysWideToNativeMB() argument
47 for (size_t i = 0; i < wide.size(); ++i) { in SysWideToNativeMB()
48 const wchar_t src = wide[i]; in SysWideToNativeMB()
78 for (size_t i = 0, j = 0; i < wide.size(); ++i) { in SysWideToNativeMB()
79 const wchar_t src = wide[i]; in SysWideToNativeMB()
Dsys_string_conversions.h34 BASE_API std::string SysWideToUTF8(const std::wstring& wide);
40 BASE_API std::string SysWideToNativeMB(const std::wstring& wide);
52 BASE_API std::string SysWideToMultiByte(const std::wstring& wide,
67 CFStringRef SysWideToCFStringRef(const std::wstring& wide);
72 NSString* SysWideToNSString(const std::wstring& wide);
/external/chromium_org/base/strings/
Dsys_string_conversions_win.cc14 std::string SysWideToUTF8(const std::wstring& wide) { in SysWideToUTF8() argument
15 return SysWideToMultiByte(wide, CP_UTF8); in SysWideToUTF8()
23 std::string SysWideToNativeMB(const std::wstring& wide) { in SysWideToNativeMB() argument
24 return SysWideToMultiByte(wide, CP_ACP); in SysWideToNativeMB()
43 std::wstring wide; in SysMultiByteToWide() local
44 wide.resize(charcount); in SysMultiByteToWide()
45 MultiByteToWideChar(code_page, 0, mb.data(), mb_length, &wide[0], charcount); in SysMultiByteToWide()
47 return wide; in SysMultiByteToWide()
51 std::string SysWideToMultiByte(const std::wstring& wide, uint32 code_page) { in SysWideToMultiByte() argument
52 int wide_length = static_cast<int>(wide.length()); in SysWideToMultiByte()
[all …]
Dsys_string_conversions_unittest.cc164 std::wstring wide = kConvertRoundtripCases[i]; in TEST() local
165 std::wstring trip = SysNativeMBToWide(SysWideToNativeMB(wide)); in TEST()
166 EXPECT_EQ(wide.size(), trip.size()); in TEST()
167 EXPECT_EQ(wide, trip); in TEST()
172 std::wstring wide = kConvertRoundtripCases[i]; in TEST() local
173 std::wstring trip = SysNativeMBToWide(WideToUTF8(wide)); in TEST()
174 EXPECT_EQ(wide.size(), trip.size()); in TEST()
175 EXPECT_EQ(wide, trip); in TEST()
179 std::wstring wide = kConvertRoundtripCases[i]; in TEST() local
180 std::wstring trip = UTF8ToWide(SysWideToNativeMB(wide)); in TEST()
[all …]
Dsys_string_conversions_posix.cc14 std::string SysWideToUTF8(const std::wstring& wide) { in SysWideToUTF8() argument
17 return WideToUTF8(wide); in SysWideToUTF8()
32 std::string SysWideToNativeMB(const std::wstring& wide) { in SysWideToNativeMB() argument
33 return WideToUTF8(wide); in SysWideToNativeMB()
42 std::string SysWideToNativeMB(const std::wstring& wide) { in SysWideToNativeMB() argument
49 for (size_t i = 0; i < wide.size(); ++i) { in SysWideToNativeMB()
50 const wchar_t src = wide[i]; in SysWideToNativeMB()
80 for (size_t i = 0, j = 0; i < wide.size(); ++i) { in SysWideToNativeMB()
81 const wchar_t src = wide[i]; in SysWideToNativeMB()
Dutf_string_conversions.cc50 std::string WideToUTF8(const std::wstring& wide) { in WideToUTF8() argument
54 WideToUTF8(wide.data(), wide.length(), &ret); in WideToUTF8()
79 string16 WideToUTF16(const std::wstring& wide) { in WideToUTF16() argument
80 return wide; in WideToUTF16()
102 string16 WideToUTF16(const std::wstring& wide) { in WideToUTF16() argument
104 WideToUTF16(wide.data(), wide.length(), &ret); in WideToUTF16()
/external/smali/smali/src/test/resources/LexerTest/
DInstructionTest.smali7 move-result-wide
11 return-wide
13 move-wide
64 sget-wide
71 sput-wide
78 sget-wide-volatile
81 sput-wide-volatile
88 const-wide/high16
90 const-wide/16
104 iget-wide
[all …]
DInstructionTest.tokens7 INSTRUCTION_FORMAT11x("move-result-wide")
11 INSTRUCTION_FORMAT11x("return-wide")
13 INSTRUCTION_FORMAT12x_OR_ID("move-wide")
64 INSTRUCTION_FORMAT21c_FIELD("sget-wide")
71 INSTRUCTION_FORMAT21c_FIELD("sput-wide")
78 INSTRUCTION_FORMAT21c_FIELD_ODEX("sget-wide-volatile")
81 INSTRUCTION_FORMAT21c_FIELD_ODEX("sput-wide-volatile")
88 INSTRUCTION_FORMAT21h("const-wide/high16")
90 INSTRUCTION_FORMAT21s("const-wide/16")
104 INSTRUCTION_FORMAT22c_FIELD("iget-wide")
[all …]
/external/llvm/test/CodeGen/X86/
Dpmovsx-inreg.ll9 %wide.load35 = load <2 x i8>* %in, align 1
10 %sext = sext <2 x i8> %wide.load35 to <2 x i64>
26 %wide.load35 = load <4 x i8>* %in, align 1
27 %sext = sext <4 x i8> %wide.load35 to <4 x i64>
37 %wide.load35 = load <4 x i8>* %in, align 1
38 %sext = sext <4 x i8> %wide.load35 to <4 x i32>
54 %wide.load35 = load <8 x i8>* %in, align 1
55 %sext = sext <8 x i8> %wide.load35 to <8 x i32>
65 %wide.load35 = load <8 x i8>* %in, align 1
66 %sext = sext <8 x i8> %wide.load35 to <8 x i16>
[all …]
/external/proguard/src/proguard/classfile/instruction/
DVariableInstruction.java35 public boolean wide; field in VariableInstruction
46 public VariableInstruction(boolean wide) in VariableInstruction() argument
48 this.wide = wide; in VariableInstruction()
72 this.wide = requiredVariableIndexSize() > 1 || in VariableInstruction()
87 this.wide = variableInstruction.wide; in copy()
243 wide = requiredVariableIndexSize() > 1 || in shrink()
252 return wide; in isWide()
300 return (wide ? 2 : 1) + variableIndexSize() + constantSize(); in length()
315 (wide ? "_w" : "") + in toString()
332 wide ? 2 : in variableIndexSize()
[all …]
/external/chromium_org/third_party/icu/source/data/locales/
Droot.txt75 wide:alias{"/LOCALE/calendar/buddhist/eras/abbreviated"}
109 abbreviated:alias{"/LOCALE/calendar/chinese/monthNames/format/wide"}
110 default{"wide"}
112 wide{
143 wide:alias{"/LOCALE/calendar/chinese/monthNames/format/wide"}
160 wide:alias{"/LOCALE/calendar/coptic/eras/abbreviated"}
166 abbreviated:alias{"/LOCALE/calendar/coptic/monthNames/format/wide"}
167 default{"wide"}
169 wide{
202 wide:alias{"/LOCALE/calendar/coptic/monthNames/format/wide"}
[all …]
/external/llvm/test/MC/ARM/
Dthumb2-narrow-dp.ll15 ANDS r0, r2, r1 // Must be wide - 3 distinct registers
18 ANDS.W r0, r0, r1 // Explicitly wide
20 AND r0, r1, r0 // Must use wide encoding as not flag-setting
23 ANDS r8, r1, r8 // high registers so must use wide encoding
27 ANDS r2, r2, r1, lsl #1 // Must use wide - shifted register
45 ANDEQ r0, r2, r1 // Must be wide - 3 distinct registers
51 ANDEQ.W r0, r0, r1 // Explicitly wide
55 ANDSEQ r0, r1, r0 // Must use wide encoding as flag-setting
61 ANDEQ r8, r1, r8 // high registers so must use wide encoding
69 ANDEQ r0, r0, r1, lsl #1 // Must use wide - shifted register
[all …]
/external/chromium/base/i18n/
Dicu_string_conversions.cc203 bool WideToCodepage(const std::wstring& wide, in WideToCodepage() argument
208 return UTF16ToCodepage(wide, codepage_name, on_error, encoded); in WideToCodepage()
223 std::vector<UChar> utf16(wide.length() * 2 + 1); in WideToCodepage()
225 reinterpret_cast<const UChar32*>(wide.c_str()), in WideToCodepage()
226 wide.length(), &status); in WideToCodepage()
236 std::wstring* wide) { in CodepageToWide() argument
238 return CodepageToUTF16(encoded, codepage_name, on_error, wide); in CodepageToWide()
240 wide->clear(); in CodepageToWide()
255 reinterpret_cast<char*>(WriteInto(wide, wchar_max_length)), in CodepageToWide()
260 wide->clear(); // Make sure the output is empty on error. in CodepageToWide()
[all …]
/external/chromium_org/base/i18n/
Dicu_string_conversions.cc200 bool WideToCodepage(const std::wstring& wide, in WideToCodepage() argument
205 return UTF16ToCodepage(wide, codepage_name, on_error, encoded); in WideToCodepage()
220 std::vector<UChar> utf16(wide.length() * 2 + 1); in WideToCodepage()
222 reinterpret_cast<const UChar32*>(wide.c_str()), in WideToCodepage()
223 wide.length(), &status); in WideToCodepage()
233 std::wstring* wide) { in CodepageToWide() argument
235 return CodepageToUTF16(encoded, codepage_name, on_error, wide); in CodepageToWide()
237 wide->clear(); in CodepageToWide()
258 wide->clear(); // Make sure the output is empty on error. in CodepageToWide()
263 wide->assign(buffer.get(), actual_size / sizeof(wchar_t)); in CodepageToWide()
/external/chromium_org/sandbox/win/wow_helper/
Dwow_helper.cc30 std::string WideToMultiByte(const base::string16& wide, UINT code_page) { in WideToMultiByte() argument
31 if (wide.length() == 0) in WideToMultiByte()
35 int charcount = WideCharToMultiByte(code_page, 0, wide.c_str(), -1, in WideToMultiByte()
42 WideCharToMultiByte(code_page, 0, wide.c_str(), -1, in WideToMultiByte()
49 std::string WideToUTF8(const base::string16& wide) { in WideToUTF8() argument
50 return WideToMultiByte(wide, CP_UTF8); in WideToUTF8()
/external/icu4c/data/locales/
Dne.txt70 wide{
108 wide{
155 wide{
199 wide{
229 wide{
249 wide{
Dbn_IN.txt21 wide{
29 wide{
47 wide{
55 wide{
/external/skia/tests/
DSk64Test.cpp157 Sk64 wide; in DEF_TEST() local
162 wide.setMul(rand.nextS(), rand.nextS()); in DEF_TEST()
163 SkLONGLONG check = wide.getLongLong(); in DEF_TEST()
165 wide.div(denom, Sk64::kTrunc_DivOption); in DEF_TEST()
167 SkLONGLONG w = wide.getLongLong(); in DEF_TEST()
171 wide.setMul(rand.nextS(), rand.nextS()); in DEF_TEST()
172 wide.abs(); in DEF_TEST()
173 denom = wide.getSqrt(); in DEF_TEST()
174 int32_t ck = (int32_t)sqrt((double)wide.getLongLong()); in DEF_TEST()
178 wide.setMul(rand.nextS(), rand.nextS()); in DEF_TEST()
[all …]

12345678910>>...29