HomeSort by relevance Sort by last modified time
    Searched defs:lab (Results 1 - 25 of 48) sorted by null

1 2

  /external/llvm/test/MC/Mips/
mips-jump-instructions.s 104 # CHECK32:lab:
111 # CHECK32: jalx lab # encoding: [A,A,A,0b011101AA]
112 # CHECK32: # fixup A - offset: 0, value: lab, kind: fixup_Mips_26
127 # CHECK64:lab:
134 # CHECK64: jalx lab # encoding: [A,A,A,0b011101AA]
135 # CHECK64: # fixup A - offset: 0, value: lab, kind: fixup_Mips_26
150 lab: label
157 jalx lab
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/
reloc-insn.s 105 tbz x0,#0,lab
107 tbnz x2,#8,lab
111 b.eq lab
115 cbz x0,lab
119 b lab
123 bl lab
188 lab: label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
labels.s 21 * #1, First definition of local label 'lab'
23 lab? add #1,a ; reports as line 17?
24 b lab?
25 * #2, Included file also defines local label 'lab'
28 lab? add #3,a ; reports as line 22?
29 b lab?
33 lab? add #4,a ; line 31?
34 b lab?
40 b lab?
44 lab? add #5,
    [all...]
  /external/e2fsprogs/lib/blkid/
getsize.c 137 struct disklabel lab; local
155 if (part >= 0 && (ioctl(fd, DIOCGDINFO, (char *)&lab) >= 0)) {
156 pp = &lab.d_partitions[part];
  /external/clang/test/CodeGen/
designated-initializers.c 142 // CHECK: @lab = global { [4 x i8], i32 } { [4 x i8] undef, i32 123 }
143 struct leading_anon_bitfield { int : 32; int n; } lab = { .n = 123 }; variable in typeref:struct:leading_anon_bitfield
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
IconPalette.java 190 double[] lab = new double[3]; local
191 ColorUtils.colorToLAB(bg, lab);
192 double bgL = lab[0];
193 ColorUtils.colorToLAB(fg, lab);
194 double fgL = lab[0];
198 final double a = lab[1], b = lab[2];
  /frameworks/support/core-utils/tests/java/android/support/v4/graphics/
ColorUtilsTest.java 122 verifyColorToLAB(entry.rgb, entry.lab);
129 verifyLABToXYZ(entry.lab, entry.xyz);
143 verifyLABToColor(entry.lab, entry.rgb);
232 private static void verifyLABToXYZ(double[] lab, double[] expected) {
234 ColorUtils.LABToXYZ(lab[0], lab[1], lab[2], result);
246 private static void verifyLABToColor(double[] lab, int expected) {
247 final int result = ColorUtils.LABToColor(lab[0], lab[1], lab[2])
263 final double[] lab = new double[3]; field in class:ColorUtilsTest.TestEntry
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
antlr.c 1909 TermEntry *t=NULL; LabelEntry *l=NULL; RuleEntry *r=NULL; char *lab; local
    [all...]
  /external/opencv/cv/src/
cvsegmentation.cpp 242 int lab = 0, t; local
261 if( t > 0 ) lab = t;
265 if( lab == 0 ) lab = t;
266 else if( t != lab ) lab = WSHED;
271 if( lab == 0 ) lab = t;
272 else if( t != lab ) lab = WSHED
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-dlx.c 1096 int lab; local
1104 lab = 0;
1107 lab = lab * 10 + *s - '0';
1115 if (dollar_label_defined (lab))
1117 as_bad (_("label \"$%d\" redefined"), lab);
1121 define_dollar_label (lab);
1122 colon (dollar_label_name (lab, 0));
tc-i370.c 1396 char *dot, *lab; local
    [all...]
tc-tic4x.c 2798 int lab; local
2836 int lab = 0; local
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_colorspace.cpp 804 FX_FLOAT lab[3]; local
806 lab[0] = (pSrcBuf[0] * 100 / 255.0f);
807 lab[1] = (FX_FLOAT)(pSrcBuf[1] - 128);
808 lab[2] = (FX_FLOAT)(pSrcBuf[2] - 128);
809 GetRGB(lab, R, G, B);
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
NotificationColorUtil.java 307 double[] lab = new double[3]; local
308 ColorUtilsFromCompat.colorToLAB(findFg ? fg : bg, lab);
310 double low = 0, high = lab[0];
311 final double a = lab[1], b = lab[2];
503 * increase in the LAB color space. A negative value will darken the color and
695 * Convert the ARGB color to its CIE Lab representative components.
698 * @param outLab 3-element array which holds the resulting LAB components
705 * Convert RGB components to its CIE Lab representative components.
716 * @param outLab 3-element array which holds the resulting LAB component
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
dwarf2dbg.c 1545 symbolS *last_lab = NULL, *lab; local
1676 symbolS *last_lab = NULL, *lab; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/
Enquire.c 647 #define Unexpected(place) if (setjmp(lab)!=0) croak(place)
735 int setjmp ARGS((jmp_buf lab));
737 jmp_buf lab, mlab; variable
738 int setjmp(jmp_buf lab) { return(0); }
739 void longjmp(jmp_buf lab, int val) { return; }
744 jmp_buf lab, mlab; variable
748 longjmp(lab, 1);
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
DevelopmentFragment.java 740 CharSequence lab = getActivity().getPackageManager().getApplicationLabel(ai); local
741 label = lab != null ? lab.toString() : mDebugApp;
    [all...]
  /packages/apps/Settings/src/com/android/settings/development/
DevelopmentSettings.java 995 CharSequence lab = getActivity().getPackageManager().getApplicationLabel(ai); local
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
vms-alpha.c 6919 struct vms_dst_label *lab = (void *)buf; local
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilts/tools/common/jasmin/
jasmin.jar 
  /external/robolectric/v3/libs/
vtd-xml-2.11.jar 
  /prebuilts/misc/common/robolectric/lib/
vtd-xml-2.11.jar 
  /prebuilts/tools/common/m2/repository/com/ximpleware/vtd-xml/2.11/
vtd-xml-2.11.jar 
  /prebuilts/misc/common/jacoco/lib/
jacocoagent.jar 

Completed in 656 milliseconds

1 2