Home
last modified time | relevance | path

Searched refs:BR (Results 1 – 25 of 611) sorted by relevance

12345678910>>...25

/third_party/skia/third_party/externals/imgui/docs/
DEXAMPLES.md82 [example_allegro5/](https://github.com/ocornut/imgui/blob/master/examples/example_allegro5/) <BR>
83 Allegro 5 example. <BR>
86 …roid_opengl3/](https://github.com/ocornut/imgui/blob/master/examples/example_android_opengl3/) <BR>
87 Android + OpenGL3 (ES) example. <BR>
90 [example_apple_metal/](https://github.com/ocornut/imgui/blob/master/examples/example_metal/) <BR>
91 OSX & iOS + Metal example. <BR>
92 = main.m + imgui_impl_osx.mm + imgui_impl_metal.mm <BR>
97 …_apple_opengl2/](https://github.com/ocornut/imgui/blob/master/examples/example_apple_opengl2/) <BR>
98 OSX + OpenGL2 example. <BR>
99 = main.mm + imgui_impl_osx.mm + imgui_impl_opengl2.cpp <BR>
[all …]
DBACKENDS.md8 …orm' backends are in charge of: mouse/keyboard/gamepad inputs, cursor shape, timing, windowing.<BR>
11 - The 'Renderer' backends are in charge of: creating atlas texture, rendering imgui draw data.<BR>
14 …me high-level frameworks, a single backend usually handle both 'Platform' and 'Renderer' parts.<BR>
107 … be tempted to start by rewrite your own backend using your own custom/high-level facilities...<BR>
118 system layered over DirectX11.<BR>
123 …le B**: your engine runs on Windows, Mac, Linux and uses DirectX11, Metal, Vulkan respectively.<BR>
128 and you have high-level systems everywhere.<BR>
/third_party/skia/third_party/externals/libwebp/src/utils/
Dbit_reader_utils.h33 #define VP8Get(BR, L) VP8GetValue(BR, 1, L) argument
37 #define VP8GetValue(BR, N, L) VP8GetValue(BR, N) argument
38 #define VP8Get(BR, L) VP8GetValue(BR, 1, L) argument
39 #define VP8GetSignedValue(BR, N, L) VP8GetSignedValue(BR, N) argument
40 #define VP8GetBit(BR, P, L) VP8GetBit(BR, P) argument
41 #define VP8GetBitAlt(BR, P, L) VP8GetBitAlt(BR, P) argument
42 #define VP8GetSigned(BR, V, L) VP8GetSigned(BR, V) argument
/third_party/ffmpeg/tests/ref/fate/
Dfilter-formats7 3 channels (FC+BL+BR)
8 4 channels (FC+LFE+BL+BR)
10 5 channels (FL+FR+LFE+BL+BR)
25 5 channels (FC+BL+BR+SL+SR)
26 6 channels (FC+LFE+BL+BR+SL+SR)
27 6 channels (FL+FR+BL+BR+SL+SR)
28 7 channels (FL+FR+LFE+BL+BR+SL+SR)
43 5 channels (FC+BL+BR+DL+DR)
44 6 channels (FC+LFE+BL+BR+DL+DR)
45 6 channels (FL+FR+BL+BR+DL+DR)
[all …]
Dchannel_layout8 quad FL+FR+BL+BR
11 5.0 FL+FR+FC+BL+BR
14 5.1 FL+FR+FC+LFE+BL+BR
18 hexagonal FL+FR+FC+BL+BR+BC
20 6.1(back) FL+FR+FC+LFE+BL+BR+BC
22 7.0 FL+FR+FC+BL+BR+SL+SR
24 7.1 FL+FR+FC+LFE+BL+BR+SL+SR
25 7.1(wide) FL+FR+FC+LFE+BL+BR+FLC+FRC
27 octagonal FL+FR+FC+BL+BR+BC+SL+SR
28 hexadecagonal FL+FR+FC+BL+BR+BC+SL+SR+TFL+TFC+TFR+TBL+TBC+TBR+WL+WR
[all …]
/third_party/libunwind/libunwind/src/ia64/
Dgetcontext.S29 #define BR(n) (SC_BR + (n)*8) macro
86 .mem.offset 8,0; st8.spill [r3] = r7, (BR(0) - GR(7)) // M3, bank 0
90 st8.spill [r2] = r6, (BR(1) - GR(6)) // M2, bank 1
91 st8 [r3] = rB0, (BR(4) - BR(0)) // M3, bank 1
96 st8 [r2] = rB1, (BR(2) - BR(1)) // M3, bank 0
100 st8 [r2] = rB2, (BR(3) - BR(2)) // M2, bank 1
101 st8 [r3] = rB4, (SC_LC - BR(4)) // M3, bank 1
111 st8 [r2] = rB3, (BR(5) - BR(3)) // M3, bank 0
116 st8 [r2] = rB5, (SC_PFS - BR(5)) // M3, bank 0
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DObject.cpp78 LLVMMemoryBufferRef LLVMBinaryCopyMemoryBuffer(LLVMBinaryRef BR) { in LLVMBinaryCopyMemoryBuffer() argument
79 auto Buf = unwrap(BR)->getMemoryBufferRef(); in LLVMBinaryCopyMemoryBuffer()
85 void LLVMDisposeBinary(LLVMBinaryRef BR) { in LLVMDisposeBinary() argument
86 delete unwrap(BR); in LLVMDisposeBinary()
89 LLVMBinaryType LLVMBinaryGetType(LLVMBinaryRef BR) { in LLVMBinaryGetType() argument
132 return BinaryTypeMapper::mapBinaryTypeToLLVMBinaryType(unwrap(BR)->getType()); in LLVMBinaryGetType()
135 LLVMBinaryRef LLVMMachOUniversalBinaryCopyObjectForArch(LLVMBinaryRef BR, in LLVMMachOUniversalBinaryCopyObjectForArch() argument
139 auto universal = cast<MachOUniversalBinary>(unwrap(BR)); in LLVMMachOUniversalBinaryCopyObjectForArch()
149 LLVMSectionIteratorRef LLVMObjectFileCopySectionIterator(LLVMBinaryRef BR) { in LLVMObjectFileCopySectionIterator() argument
150 auto OF = cast<ObjectFile>(unwrap(BR)); in LLVMObjectFileCopySectionIterator()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
DObject.h84 void LLVMDisposeBinary(LLVMBinaryRef BR);
95 LLVMMemoryBufferRef LLVMBinaryCopyMemoryBuffer(LLVMBinaryRef BR);
102 LLVMBinaryType LLVMBinaryGetType(LLVMBinaryRef BR);
115 LLVMBinaryRef LLVMMachOUniversalBinaryCopyObjectForArch(LLVMBinaryRef BR,
131 LLVMSectionIteratorRef LLVMObjectFileCopySectionIterator(LLVMBinaryRef BR);
138 LLVMBool LLVMObjectFileIsSectionIteratorAtEnd(LLVMBinaryRef BR,
152 LLVMSymbolIteratorRef LLVMObjectFileCopySymbolIterator(LLVMBinaryRef BR);
159 LLVMBool LLVMObjectFileIsSymbolIteratorAtEnd(LLVMBinaryRef BR,
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypeModifiers.ts45 type BR = { readonly a: { x: number }, readonly b: { x: string } }; alias
51 var b00: keyof BR; variable
65 var b03: BR;
68 var b03: { [P in keyof BR]: BR[P] } variable
69 var b03: Pick<BR, keyof BR>;
73 var b04: Partial<BR>;
/third_party/typescript/tests/baselines/reference/
DmappedTypeModifiers.types121 type BR = { readonly a: { x: number }, readonly b: { x: string } };
122 >BR : { readonly a: { x: number;}; readonly b: { x: string;}; }
144 var b00: keyof BR;
177 var b03: BR;
178 >b03 : BR
181 >b03 : BR
184 >b03 : BR
186 var b03: { [P in keyof BR]: BR[P] }
187 >b03 : BR
189 var b03: Pick<BR, keyof BR>;
[all …]
DmappedTypeModifiers.js43 type BR = { readonly a: { x: number }, readonly b: { x: string } };
49 var b00: keyof BR;
63 var b03: BR;
66 var b03: { [P in keyof BR]: BR[P] }
67 var b03: Pick<BR, keyof BR>;
71 var b04: Partial<BR>;
DmappedTypeModifiers.symbols193 type BR = { readonly a: { x: number }, readonly b: { x: string } };
194 >BR : Symbol(BR, Decl(mappedTypeModifiers.ts, 40, 51))
218 var b00: keyof BR;
220 >BR : Symbol(BR, Decl(mappedTypeModifiers.ts, 40, 51))
280 var b03: BR;
282 >BR : Symbol(BR, Decl(mappedTypeModifiers.ts, 40, 51))
296 var b03: { [P in keyof BR]: BR[P] }
299 >BR : Symbol(BR, Decl(mappedTypeModifiers.ts, 40, 51))
300 >BR : Symbol(BR, Decl(mappedTypeModifiers.ts, 40, 51))
303 var b03: Pick<BR, keyof BR>;
[all …]
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/
DShortNumberInfoTest.java231 assertTrue(shortInfo.connectsToEmergencyNumber("911", RegionCode.BR)); in testConnectsToEmergencyNumber_BR()
232 assertTrue(shortInfo.connectsToEmergencyNumber("190", RegionCode.BR)); in testConnectsToEmergencyNumber_BR()
233 assertFalse(shortInfo.connectsToEmergencyNumber("999", RegionCode.BR)); in testConnectsToEmergencyNumber_BR()
238 assertFalse(shortInfo.connectsToEmergencyNumber("9111", RegionCode.BR)); in testConnectsToEmergencyNumberLongNumber_BR()
239 assertFalse(shortInfo.connectsToEmergencyNumber("1900", RegionCode.BR)); in testConnectsToEmergencyNumberLongNumber_BR()
240 assertFalse(shortInfo.connectsToEmergencyNumber("9996", RegionCode.BR)); in testConnectsToEmergencyNumberLongNumber_BR()
298 assertTrue(shortInfo.isEmergencyNumber("911", RegionCode.BR)); in testIsEmergencyNumber_BR()
299 assertTrue(shortInfo.isEmergencyNumber("190", RegionCode.BR)); in testIsEmergencyNumber_BR()
300 assertFalse(shortInfo.isEmergencyNumber("999", RegionCode.BR)); in testIsEmergencyNumber_BR()
304 assertFalse(shortInfo.isEmergencyNumber("9111", RegionCode.BR)); in testIsEmergencyNumberLongNumber_BR()
[all …]
/third_party/libphonenumber/javascript/i18n/phonenumbers/
Dshortnumberinfo_test.js319 assertTrue(shortInfo.connectsToEmergencyNumber('911', RegionCode.BR));
320 assertTrue(shortInfo.connectsToEmergencyNumber('190', RegionCode.BR));
321 assertFalse(shortInfo.connectsToEmergencyNumber('999', RegionCode.BR));
326 assertFalse(shortInfo.connectsToEmergencyNumber('9111', RegionCode.BR));
327 assertFalse(shortInfo.connectsToEmergencyNumber('1900', RegionCode.BR));
328 assertFalse(shortInfo.connectsToEmergencyNumber('9996', RegionCode.BR));
387 assertTrue(shortInfo.isEmergencyNumber('911', RegionCode.BR));
388 assertTrue(shortInfo.isEmergencyNumber('190', RegionCode.BR));
389 assertFalse(shortInfo.isEmergencyNumber('999', RegionCode.BR));
393 assertFalse(shortInfo.isEmergencyNumber('9111', RegionCode.BR));
[all …]
/third_party/libphonenumber/cpp/test/phonenumbers/
Dshortnumberinfo_test.cc345 EXPECT_TRUE(short_info_.ConnectsToEmergencyNumber("911", RegionCode::BR())); in TEST_F()
346 EXPECT_TRUE(short_info_.ConnectsToEmergencyNumber("190", RegionCode::BR())); in TEST_F()
347 EXPECT_FALSE(short_info_.ConnectsToEmergencyNumber("999", RegionCode::BR())); in TEST_F()
352 EXPECT_FALSE(short_info_.ConnectsToEmergencyNumber("9111", RegionCode::BR())); in TEST_F()
353 EXPECT_FALSE(short_info_.ConnectsToEmergencyNumber("1900", RegionCode::BR())); in TEST_F()
354 EXPECT_FALSE(short_info_.ConnectsToEmergencyNumber("9996", RegionCode::BR())); in TEST_F()
419 EXPECT_TRUE(short_info_.IsEmergencyNumber("911", RegionCode::BR())); in TEST_F()
420 EXPECT_TRUE(short_info_.IsEmergencyNumber("190", RegionCode::BR())); in TEST_F()
421 EXPECT_FALSE(short_info_.IsEmergencyNumber("999", RegionCode::BR())); in TEST_F()
425 EXPECT_FALSE(short_info_.IsEmergencyNumber("9111", RegionCode::BR())); in TEST_F()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/
Dzone1970.tab84 BR -0351-03225 America/Noronha Atlantic islands
85 BR -0127-04829 America/Belem Pará (east); Amapá
86 BR -0343-03830 America/Fortaleza Brazil (northeast: MA, PI, CE, RN, PB)
87 BR -0803-03454 America/Recife Pernambuco
88 BR -0712-04812 America/Araguaina Tocantins
89 BR -0940-03543 America/Maceio Alagoas, Sergipe
90 BR -1259-03831 America/Bahia Bahia
91 BR -2332-04637 America/Sao_Paulo Brazil (southeast: GO, DF, MG, ES, RJ, SP, PR, SC, RS)
92 BR -2027-05437 America/Campo_Grande Mato Grosso do Sul
93 BR -1535-05605 America/Cuiaba Mato Grosso
[all …]
/third_party/tzdata/
Dzone1970.tab84 BR -0351-03225 America/Noronha Atlantic islands
85 BR -0127-04829 America/Belem Pará (east), Amapá
86 BR -0343-03830 America/Fortaleza Brazil (northeast: MA, PI, CE, RN, PB)
87 BR -0803-03454 America/Recife Pernambuco
88 BR -0712-04812 America/Araguaina Tocantins
89 BR -0940-03543 America/Maceio Alagoas, Sergipe
90 BR -1259-03831 America/Bahia Bahia
91 BR -2332-04637 America/Sao_Paulo Brazil (southeast: GO, DF, MG, ES, RJ, SP, PR, SC, RS)
92 BR -2027-05437 America/Campo_Grande Mato Grosso do Sul
93 BR -1535-05605 America/Cuiaba Mato Grosso
[all …]
Dzone.tab89 BR -0351-03225 America/Noronha Atlantic islands
90 BR -0127-04829 America/Belem Para (east), Amapa
91 BR -0343-03830 America/Fortaleza Brazil (northeast: MA, PI, CE, RN, PB)
92 BR -0803-03454 America/Recife Pernambuco
93 BR -0712-04812 America/Araguaina Tocantins
94 BR -0940-03543 America/Maceio Alagoas, Sergipe
95 BR -1259-03831 America/Bahia Bahia
96 BR -2332-04637 America/Sao_Paulo Brazil (southeast: GO, DF, MG, ES, RJ, SP, PR, SC, RS)
97 BR -2027-05437 America/Campo_Grande Mato Grosso do Sul
98 BR -1535-05605 America/Cuiaba Mato Grosso
[all …]
/third_party/python/Lib/test/
Dtokenize_tests.txt115 x = br'abc' + Br'ABC' + bR'ABC' + BR'ABC'
116 y = br"abc" + Br"ABC" + bR"ABC" + BR"ABC"
119 x = br'\\' + BR'\\'
125 baz''' + BR'''
/third_party/skia/third_party/externals/libjpeg-turbo/
Djcphuff.c883 emit_buffered_bits(entropy, BR_buffer, BR); \
885 BR = 0; \
897 BR_buffer[BR++] = (char)(temp & 1); \
914 emit_buffered_bits(entropy, BR_buffer, BR); \
916 BR = 0; \
929 unsigned int BR; in encode_mcu_AC_refine() local
961 BR = 0; /* BR = count of buffered bits added now */ in encode_mcu_AC_refine()
991 if (r > 0 || BR > 0) { /* If there are trailing zeroes, */ in encode_mcu_AC_refine()
993 entropy->BE += BR; /* concat my correction bits to older ones */ in encode_mcu_AC_refine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/
DResourceManager.cpp325 for (std::pair<ResourceRef, unsigned> &BR : BusyResources) { in cycleEvent()
326 if (BR.second) in cycleEvent()
327 BR.second--; in cycleEvent()
328 if (!BR.second) { in cycleEvent()
330 const ResourceRef &RR = BR.first; in cycleEvent()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/data/
DlocaleMatcherTest.txt69 # pt-AU and pt-PT in one cluster; pt-BR in another
71 @supported=pt-PT, pt-BR
73 @supported=pt-BR, pt-PT
125 @supported=pt-PT, pt-BR
127 @supported=pt-BR, pt-PT
463 @supported=pt-PT, pt-BR, es, es-419
470 # matchers as "pt-BR" is a much more common language.
472 @supported=pt-PT, pt-BR, es, es-419
473 pt, es-419, pt-PT >> pt-BR
479 @supported=pt-BR, es, es-419
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/util/data/
DlocaleMatcherTest.txt69 # pt-AU and pt-PT in one cluster; pt-BR in another
71 @supported=pt-PT, pt-BR
73 @supported=pt-BR, pt-PT
125 @supported=pt-PT, pt-BR
127 @supported=pt-BR, pt-PT
463 @supported=pt-PT, pt-BR, es, es-419
470 # matchers as "pt-BR" is a much more common language.
472 @supported=pt-PT, pt-BR, es, es-419
473 pt, es-419, pt-PT >> pt-BR
479 @supported=pt-BR, es, es-419
[all …]
/third_party/icu/icu4c/source/test/testdata/
DlocaleMatcherTest.txt69 # pt-AU and pt-PT in one cluster; pt-BR in another
71 @supported=pt-PT, pt-BR
73 @supported=pt-BR, pt-PT
125 @supported=pt-PT, pt-BR
127 @supported=pt-BR, pt-PT
463 @supported=pt-PT, pt-BR, es, es-419
470 # matchers as "pt-BR" is a much more common language.
472 @supported=pt-PT, pt-BR, es, es-419
473 pt, es-419, pt-PT >> pt-BR
479 @supported=pt-BR, es, es-419
[all …]
/third_party/mesa3d/src/freedreno/decode/scripts/
Dparse-submits.lua360 r.GRAS_SC_SCREEN_SCISSOR[0].BR.X + 1,
361 r.GRAS_SC_SCREEN_SCISSOR[0].BR.Y + 1,
373 r.GRAS_SC_SCREEN_SCISSOR[0].BR.X + 1,
374 r.GRAS_SC_SCREEN_SCISSOR[0].BR.Y + 1,

12345678910>>...25