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

1 2 3

  /external/clang/test/CodeGen/
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);
  /external/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
contentscript.js 6 var regex = /sandwich/gi;
  /external/icu4c/layout/
MarkToBasePosnSubtables.cpp 95 GlyphIterator gi(baseIterator, (le_uint16)0); // copy of baseIterator that won't ignore marks
96 gi.next(); // point beyond the base glyph
97 while (gi.getCurrStreamPosition() < glyphIterator->getCurrStreamPosition()) { // for all intervening glyphs (marks)...
98 LEGlyphID otherMark = gi.getCurrGlyphID();
103 gi.next();
  /packages/apps/Gallery2/jni/filters/
hsv.c 42 int gi = rgb[rgbOff+1]; local
46 if (ri > gi) {
48 iMin = MIN (gi, bi);
50 iMax = MAX (gi, bi);
69 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
71 } else if (gi == iMax)
74 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
  /external/clang/test/Parser/
recovery.cpp 3 8gi///===--- recovery.cpp ---===// // expected-error {{unqualified-id}}
  /external/e2fsprogs/lib/ext2fs/
getsize.c 77 DISK_GEOMETRY gi; local
99 &gi, sizeof(DISK_GEOMETRY),
100 &gi, sizeof(DISK_GEOMETRY),
103 *retblocks = gi.BytesPerSector *
104 gi.SectorsPerTrack *
105 gi.TracksPerCylinder *
106 gi.Cylinders.QuadPart / blocksize;
nt_io.c 755 DISK_GEOMETRY gi; local
787 RtlZeroMemory(&gi, sizeof(DISK_GEOMETRY));
791 &gi, sizeof(DISK_GEOMETRY),
792 &gi, sizeof(DISK_GEOMETRY));
798 gi.BytesPerSector *
799 gi.SectorsPerTrack *
800 gi.TracksPerCylinder *
801 gi.Cylinders.QuadPart;
  /external/libvorbis/lib/
psy.h 90 vorbis_info_psy_global *gi; member in struct:__anon9675
117 vorbis_info_psy_global *gi,int n,long rate);
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...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
properties-001.js 21 AddRegExpCases( /[\D]{1,5}[\ -][\d]/gi, "[\\D]{1,5}[\\ -][\\d]", true, true, false, 0 );
27 AddRegExpCases( /\097/gi, "\\097", true, true, false, 0 );
  /external/zlib/src/contrib/minizip/
miniunz.c 238 unz_global_info64 gi; local
241 err = unzGetGlobalInfo64(uf,&gi);
246 for (i=0;i<gi.number_entry;i++)
297 if ((i+1)<gi.number_entry)
482 unz_global_info64 gi; local
486 err = unzGetGlobalInfo64(uf,&gi);
490 for (i=0;i<gi.number_entry;i++)
497 if ((i+1)<gi.number_entry)
unzip.c 170 unz_global_info64 gi; /* public global information */ member in struct:__anon17194
660 if (unz64local_getLong64(&us.z_filefunc, us.filestream,&us.gi.number_entry)!=UNZ_OK)
667 if ((number_entry_CD!=us.gi.number_entry) ||
681 us.gi.size_comment = 0;
710 us.gi.number_entry = uL;
717 if ((number_entry_CD!=us.gi.number_entry) ||
734 if (unz64local_getShort(&us.z_filefunc, us.filestream,&us.gi.size_comment)!=UNZ_OK)
834 *pglobal_info=s->gi;
845 pglobal_info32->number_entry = (uLong)s->gi.number_entry;
846 pglobal_info32->size_comment = s->gi.size_comment
    [all...]
  /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);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-216591.js 72 * [ ] perl -e '"a {result.data.DATA} b" =~ /\{(([a-z0-9\-_]+?\.)+?)([a-z0-9\-_]+?)\}/gi; print("$&, $1, $2, $3");'
80 pattern = /\{(([a-z0-9\-_]+?\.)+?)([a-z0-9\-_]+?)\}/gi;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
flags.js 56 testcases[count++] = new TestCase ( SECTION, "'xa Xb xc xd Xe xf'.match(/x./gi)",
57 String(["xa","Xb","xc","xd","Xe","xf"]), String('xa Xb xc xd Xe xf'.match(/x./gi)));
59 testcases[count++] = new TestCase ( SECTION, "'xa Xb xc xd Xe xf'.match(new RegExp('x.','gi'))",
60 String(["xa","Xb","xc","xd","Xe","xf"]), String('xa Xb xc xd Xe xf'.match(new RegExp('x.','gi'))));
toString.js 51 // re = /test/gi; re.toString()
52 re = /test/gi;
53 testcases[count++] = new TestCase ( SECTION, "re = /test/gi; re.toString()",
54 '/test/gi', re.toString());
59 '/test2/gi', re.toString());
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
regexp.js 378 var re29 = /%2R/gi;
379 var re30 = /%2S/gi;
    [all...]
  /external/v8/benchmarks/
regexp.js 378 var re29 = /%2R/gi;
379 var re30 = /%2S/gi;
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-regexp.js 271 var re29 = /%2R/gi;
272 var re30 = /%2S/gi;
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-regexp.js 271 var re29 = /%2R/gi;
272 var re30 = /%2S/gi;
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-regexp.js 271 var re29 = /%2R/gi;
272 var re30 = /%2S/gi;
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_parse.c 470 int p2p_group_info_parse(const u8 *gi, size_t gi_len,
476 if (gi == NULL)
479 g = gi;
480 gend = gi + gi_len;
539 static int p2p_group_info_text(const u8 *gi, size_t gi_len, char *buf,
547 if (p2p_group_info_parse(gi, gi_len, &info) < 0)
  /external/clang/test/SemaCXX/
class.cpp 103 mutable int gi; // expected-error {{'mutable' can only be applied to member variables}} variable
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.cpp 543 GESTUREINFO gi = {0}; local
544 gi.cbSize = sizeof(GESTUREINFO);
546 if (!GetGestureInfoPtr()(gestureHandle, &gi)) {
551 switch (gi.dwID) {
553 m_lastPanX = gi.ptsLocation.x;
554 m_lastPanY = gi.ptsLocation.y;
560 int currentX = gi.ptsLocation.x;
561 int currentY = gi.ptsLocation.y;
577 if (gi.dwFlags & GF_BEGIN) {
581 } else if (gi.dwFlags & GF_END)
    [all...]

Completed in 2027 milliseconds

1 2 3