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

1 2 3

  /external/syslinux/com32/sysdump/
vesa.c 10 struct vesa_general_info *gip, gi; local
19 gip = &vip->gi;
30 memcpy(&gi, gip, sizeof gi);
34 if (gi.signature != VESA_MAGIC)
39 cpio_writefile(be, "vesa/global.bin", &gi, sizeof gi);
41 mode_ptr = GET_PTR(gi.video_mode_ptr);
  /external/clang/test/CodeGen/
object-size.cpp 5 int gi; variable
18 gi = __builtin_object_size(&c, 0);
20 gi = __builtin_object_size((A*)&c, 0);
22 gi = __builtin_object_size((B*)&c, 0);
25 gi = __builtin_object_size((char*)&c, 0);
27 gi = __builtin_object_size((char*)(A*)&c, 0);
29 gi = __builtin_object_size((char*)(B*)&c, 0);
39 gi = __builtin_object_size(&c->bs[0], 0);
41 gi = __builtin_object_size(&c->bs[0], 1);
43 gi = __builtin_object_size(&c->bs[0], 2)
    [all...]
systemz-inline-asm.c 3 unsigned int gi; variable
7 asm("st %1, %0" : "=m" (gi) : "r" (i));
9 // CHECK: call void asm "st $1, $0", "=*m,r"(i32* nonnull @gi, i32 %i)
13 asm("st %1, %0" : "=Q" (gi) : "r" (i));
15 // CHECK: call void asm "st $1, $0", "=*Q,r"(i32* nonnull @gi, i32 %i)
19 asm("st %1, %0" : "=R" (gi) : "r" (i));
21 // CHECK: call void asm "st $1, $0", "=*R,r"(i32* nonnull @gi, i32 %i)
25 asm("st %1, %0" : "=S" (gi) : "r" (i));
27 // CHECK: call void asm "st $1, $0", "=*S,r"(i32* nonnull @gi, i32 %i)
31 asm("st %1, %0" : "=T" (gi) : "r" (i))
    [all...]
pass-object-size.c 11 int gi = 0; variable
42 gi = ObjectSize0(&t[1]);
44 gi = ObjectSize1(&t[1]);
46 gi = ObjectSize2(&t[1]);
48 gi = ObjectSize3(&t[1]);
51 gi = ObjectSize0(&t[1].t[1]);
53 gi = ObjectSize1(&t[1].t[1]);
55 gi = ObjectSize2(&t[1].t[1]);
57 gi = ObjectSize3(&t[1].t[1]);
63 gi = ObjectSize1(&t->t[1])
    [all...]
object-size.c 14 int gi, gj; variable
70 strcpy(buf[++gi], "Hi there");
77 strcpy((char *)((++gi) + gj), "Hi there");
133 gi = __builtin_object_size(gp++, 0);
135 gi = __builtin_object_size(gp++, 1);
137 gi = __builtin_object_size(gp++, 2);
139 gi = __builtin_object_size(gp++, 3);
157 gi = __builtin_object_size(&foo.a, 0);
159 gi = __builtin_object_size(&foo.a, 1);
161 gi = __builtin_object_size(&foo.a, 2)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
getsize.c 79 DISK_GEOMETRY gi; local
101 &gi, sizeof(DISK_GEOMETRY),
102 &gi, sizeof(DISK_GEOMETRY),
105 *retblocks = gi.BytesPerSector *
106 gi.SectorsPerTrack *
107 gi.TracksPerCylinder *
108 gi.Cylinders.QuadPart / blocksize;
nt_io.c 753 DISK_GEOMETRY gi; local
785 RtlZeroMemory(&gi, sizeof(DISK_GEOMETRY));
789 &gi, sizeof(DISK_GEOMETRY),
790 &gi, sizeof(DISK_GEOMETRY));
796 gi.BytesPerSector *
797 gi.SectorsPerTrack *
798 gi.TracksPerCylinder *
799 gi.Cylinders.QuadPart;
  /external/syslinux/com32/lua/src/
vesa.c 17 struct vesa_general_info *gi; local
22 gi = lmalloc(sizeof *gi);
23 if (!gi)
31 memset(gi, 0, sizeof *gi);
33 gi->signature = VBE2_MAGIC; /* Get VBE2 extended data */
35 rm.edi.w[0] = OFFS(gi);
36 rm.es = SEG(gi);
41 if ( gi->signature != VESA_MAGIC )
    [all...]
  /external/syslinux/com32/modules/
vesainfo.c 24 struct vesa_general_info *gi; local
36 gi = &vesa->gi;
40 gi->signature = VBE2_MAGIC; /* Get VBE2 extended data */
42 rm.edi.w[0] = OFFS(gi);
43 rm.es = SEG(gi);
49 } else if (gi->signature != VESA_MAGIC) {
55 (gi->version >> 8) & 0xff, gi->version & 0xff);
59 mode_ptr = GET_PTR(gi->video_mode_ptr)
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-template-explicit-specialization.cpp 84 g<int> gi; variable
pass-object-size.cpp 3 int gi; variable
18 gi = L1(ptr);
20 gi = L2(ptr);
  /external/syslinux/com32/mboot/
initvesa.c 53 struct vesa_general_info *gi; local
65 gi = lmalloc(sizeof *gi);
66 if (!gi)
74 memset(gi, 0, sizeof *gi);
76 gi->signature = VBE2_MAGIC; /* Get VBE2 extended data */
78 rm.edi.w[0] = OFFS(gi);
79 rm.es = SEG(gi);
84 if (gi->signature != VESA_MAGIC
    [all...]
vesa.h 94 struct vesa_general_info gi; member in struct:vesa_info
  /external/clang/test/Sema/
attr-flag-enum.c 19 gi = ~0x11, // expected-warning {{enumeration value 'gi' is out of range}} enumerator in enum:flag2
  /external/icu/icu4c/source/test/intltest/
genderinfotest.cpp 104 const GenderInfo* gi = GenderInfo::getInstance(locale, status); local
109 UGender actual = gi->getListGender(genderList, listLength, status);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ScanHandler.java 76 public void gi(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
PYXScanner.java 62 h.gi(buff, 1, size - 1);
PYXWriter.java 78 public void gi(char[] buff, int offset, int length) throws SAXException { method in class:PYXWriter
  /packages/apps/Gallery2/jni/filters/
hsv.c 43 int gi = rgb[rgbOff+1]; local
47 if (ri > gi) {
49 iMin = MIN (gi, bi);
51 iMax = MAX (gi, bi);
70 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
72 } else if (gi == iMax)
75 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
  /external/clang/test/SemaCXX/
class.cpp 114 mutable int gi; // expected-error {{'mutable' can only be applied to member variables}} variable
  /external/libvorbis/lib/
envelope.c 34 vorbis_info_psy_global *gi=&ci->psy_g_param; local
40 e->minenergy=gi->preecho_minenergy;
91 vorbis_info_psy_global *gi,
110 float penalty=gi->stretch_penalty-(ve->stretch/2-VE_MINSTRETCH);
112 if(penalty>gi->stretch_penalty)penalty=gi->stretch_penalty;
201 if(valmax>gi->preecho_thresh[j]+penalty){
205 if(valmin<gi->postecho_thresh[j]-penalty)ret|=2;
219 vorbis_info_psy_global *gi=&ci->psy_g_param; local
242 ret|=_ve_amp(ve,gi,pcm,ve->band,ve->filter+i*VE_BANDS)
    [all...]
psy.h 90 vorbis_info_psy_global *gi; member in struct:__anon24530
117 vorbis_info_psy_global *gi,int n,long rate);
  /external/syslinux/com32/hdt/
hdt-common.c 316 struct vesa_general_info *gi; local
328 gi = lmalloc(sizeof(*gi));
329 if (!gi)
336 gi->signature = VBE2_MAGIC; /* Get VBE2 extended data */
339 rm.edi.w[0] = OFFS(gi);
340 rm.es = SEG(gi);
347 mode_ptr = GET_PTR(gi->video_mode_ptr);
348 oem_ptr = GET_PTR(gi->oem_vendor_name_ptr);
350 oem_ptr = GET_PTR(gi->oem_product_name_ptr)
    [all...]
  /external/syslinux/com32/lib/sys/vesa/
vesa.h 95 struct vesa_general_info gi; member in struct:vesa_info
  /external/syslinux/core/
bios.c 221 struct vesa_general_info *gi; local
233 gi = &vi->gi;
238 gi->signature = VBE2_MAGIC; /* Get VBE2 extended data */
240 rm.edi.w[0] = OFFS(gi);
241 rm.es = SEG(gi);
248 if (gi->signature != VESA_MAGIC) {
252 if (gi->version < 0x0102) {
258 memcpy(&vesa_info->gi, gi, sizeof *gi)
    [all...]

Completed in 804 milliseconds

1 2 3