HomeSort by relevance Sort by last modified time
    Searched refs:hd (Results 26 - 50 of 94) sorted by null

12 3 4

  /external/protobuf/ruby/ext/google/protobuf_c/
upb.h 6114 const void *hd; local
6126 const void *hd; local
6138 const void *hd; local
6151 const void *hd; local
6166 const void *hd; local
6179 const void *hd; local
6194 const void *hd; local
6207 const void *hd; local
6225 const void *hd; local
    [all...]
upb.c 12261 const EnumHandlerData *hd = handler_data; local
12294 const EnumHandlerData *hd = handler_data; local
12305 const EnumHandlerData *hd = handler_data; local
12567 EnumHandlerData *hd = upb_gmalloc(sizeof(EnumHandlerData)); local
    [all...]
  /external/syslinux/memdisk/
mstructs.h 119 } hd; member in union:__anon38521
setup.c 891 (geometry->driveno & 0x80) ? "hd" : "fd",
923 pptr->dpt.hd.max_cyl = geometry->c - 1;
924 pptr->dpt.hd.max_head = geometry->h - 1;
925 pptr->dpt.hd.ctrl = (geometry->h > 8) ? 0x08 : 0;
    [all...]
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 64 HasDestructor hd; local
65 static_assert(!noexcept(hd = HasDestructor()), "");
  /external/curl/lib/
http2.c 517 int32_t stream_id = frame->hd.stream_id;
521 if(frame->hd.type == NGHTTP2_SETTINGS) {
562 frame->hd.type, stream_id));
564 switch(frame->hd.type) {
633 frame->hd.type, stream_id));
649 data_s = nghttp2_session_get_stream_user_data(session, frame->hd.stream_id);
731 data_s = nghttp2_session_get_stream_user_data(session, frame->hd.stream_id);
745 data_s = nghttp2_session_get_stream_user_data(session, frame->hd.stream_id);
748 frame->hd.length));
762 data_s = nghttp2_session_get_stream_user_data(session, frame->hd.stream_id)
    [all...]
  /external/protobuf/php/ext/google/protobuf/
upb.c 11444 const EnumHandlerData *hd = handler_data; local
11477 const EnumHandlerData *hd = handler_data; local
11488 const EnumHandlerData *hd = handler_data; local
11749 EnumHandlerData *hd = malloc(sizeof(EnumHandlerData)); local
    [all...]
  /external/blktrace/btt/
devs.c 202 void dip_foreach_list(struct io *iop, enum iop_type type, struct list_head *hd)
204 dip_rb_fe(iop->dip, type, iop, NULL, hd);
globals.h 211 void dip_foreach_list(struct io *iop, enum iop_type type, struct list_head *hd);
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
StampedLock.java 1048 WNode hd = new WNode(WMODE, null); local
1172 WNode hd = new WNode(WMODE, null); local
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
unzip_nacl.go 164 // hl and hd are the Huffman states for the lit/length values
165 // and the distance values, respectively. If hd == nil, using the
167 func (f *decompressor) huffmanBlock(hl, hd *huffmanDecoder) {
217 if hd == nil {
227 if dist = f.huffSym(hd); f.err {
  /prebuilts/go/linux-x86/src/syscall/
unzip_nacl.go 164 // hl and hd are the Huffman states for the lit/length values
165 // and the distance values, respectively. If hd == nil, using the
167 func (f *decompressor) huffmanBlock(hl, hd *huffmanDecoder) {
217 if hd == nil {
227 if dist = f.huffSym(hd); f.err {
  /prebuilts/go/darwin-x86/src/compress/flate/
inflate.go 296 hl, hd *huffmanDecoder
318 f.hd = nil
326 f.hd = &f.h2
475 // hl and hd are the Huffman states for the lit/length values
476 // and the distance values, respectively. If hd == nil, using the
553 if f.hd == nil {
564 if dist, err = f.huffSym(f.hd); err != nil {
  /prebuilts/go/linux-x86/src/compress/flate/
inflate.go 296 hl, hd *huffmanDecoder
318 f.hd = nil
326 f.hd = &f.h2
475 // hl and hd are the Huffman states for the lit/length values
476 // and the distance values, respectively. If hd == nil, using the
553 if f.hd == nil {
564 if dist, err = f.huffSym(f.hd); err != nil {
  /external/syslinux/com32/chain/
chain.c 279 int drive, hd, partition; local
307 hd = opt.drivename[0] == 'h' ? 0x80 : 0;
309 drive = hd | strtol(opt.drivename, NULL, 0);
  /device/linaro/bootloader/edk2/OvmfPkg/
build.sh 237 -hd[a-d]|-fd[ab]|-cdrom)
  /libcore/ojluni/src/test/java/time/tck/java/time/chrono/
TCKJapaneseChronology.java 653 JapaneseDate hd = JapaneseChronology.INSTANCE.dateYearDay(era, firstYear, i); local
654 int doy = hd.get(DAY_OF_YEAR);
655 assertEquals(doy, i, "get(DAY_OF_YEAR) incorrect for " + i + ", of date: " + hd);
662 JapaneseDate hd = JapaneseChronology.INSTANCE.dateYearDay(1990, 1); local
663 for (int i = 1; i <= hd.lengthOfYear(); i++) {
664 JapaneseDate hd2 = hd.with(DAY_OF_YEAR, i);
    [all...]
TCKMinguoChronology.java 208 MinguoDate hd = minguoDate; local
209 ChronoLocalDateTime<MinguoDate> hdt = hd.atTime(LocalTime.NOON);
    [all...]
  /libcore/ojluni/src/main/java/java/util/
HashMap.java 759 TreeNode<K,V> hd = null, tl = null; local
763 hd = p;
770 if ((tab[index] = hd) != null)
771 hd.treeify(tab);
1956 Node<K,V> hd = null, tl = null; local
    [all...]
  /external/curl/
buildconf.bat 215 echo #include "tool_hugehelp.hd">> src\tool_hugehelp.c
  /build/make/tools/droiddoc/templates-pdk/assets/
prettify.js 7 bd="c",cd="cc",dd="cpp",ed="cxx",fd="cyc",gd="m",hd="null true false",id="json",jd="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try boolean byte extends final finally implements import instanceof null native package strictfp super synchronized throws transient as base by checked decimal delegate descending event fixed foreach from group implicit in interface internal into is lock object out override orderby params partial readonly ref sbyte sealed stackalloc string select uint ulong unchecked unsafe ushort var ",
10 zd="rb",Ad="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try debugger eval export function get null set undefined var with Infinity NaN ",Bd="js",Cd="regex",Dd="pre",Ed="code",Fd="xmp",Gd="prettyprint",Hd="class",Id="br",Jd="\r";
28 [$c]);y(C({keywords:ad,hashComments:o,cStyleComments:o}),[bd,cd,dd,ed,fd,gd]);y(C({keywords:hd}),[id]);y(C({keywords:jd,hashComments:o,cStyleComments:o}),[kd]);y(C({keywords:ld,cStyleComments:o}),[md]);y(C({keywords:nd,hashComments:o,multiLineStrings:o}),[od,pd,qd]);y(C({keywords:rd,hashComments:o,multiLineStrings:o,tripleQuotedStrings:o}),[sd,td]);y(C({keywords:ud,hashComments:o,multiLineStrings:o,regexLiterals:o}),[vd,wd,xd]);y(C({keywords:yd,hashComments:o,multiLineStrings:o,regexLiterals:o}),
31 P);q={e:e,d:s,g:f};Sa(q);w()}}}if(n<d.length)setTimeout(v,250);else a&&a()}function w(){var j=q.a;if(j){var f=q.g;if(Ma(f)){for(var s=document.createElement(gc),k=0;k<f.attributes.length;++k){var h=f.attributes[k];if(h.specified){var e=h.name.toLowerCase();if(e===Hd)s.className=h.value;else s.setAttribute(h.name,h.value)}}s.innerHTML=j;f.parentNode.replaceChild(s,f);f=s}else f.innerHTML=j;if(b&&f.tagName===gc)for(var p=f.getElementsByTagName(Id),t=p.length;--t>=0;){var u=p[t];u.parentNode.replaceChild(document.createTextNode(Jd),
  /external/doclava/res/assets/templates/assets/
prettify.js 7 bd="c",cd="cc",dd="cpp",ed="cxx",fd="cyc",gd="m",hd="null true false",id="json",jd="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try boolean byte extends final finally implements import instanceof null native package strictfp super synchronized throws transient as base by checked decimal delegate descending event fixed foreach from group implicit in interface internal into is lock object out override orderby params partial readonly ref sbyte sealed stackalloc string select uint ulong unchecked unsafe ushort var ",
10 zd="rb",Ad="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try debugger eval export function get null set undefined var with Infinity NaN ",Bd="js",Cd="regex",Dd="pre",Ed="code",Fd="xmp",Gd="prettyprint",Hd="class",Id="br",Jd="\r";
28 [$c]);y(C({keywords:ad,hashComments:o,cStyleComments:o}),[bd,cd,dd,ed,fd,gd]);y(C({keywords:hd}),[id]);y(C({keywords:jd,hashComments:o,cStyleComments:o}),[kd]);y(C({keywords:ld,cStyleComments:o}),[md]);y(C({keywords:nd,hashComments:o,multiLineStrings:o}),[od,pd,qd]);y(C({keywords:rd,hashComments:o,multiLineStrings:o,tripleQuotedStrings:o}),[sd,td]);y(C({keywords:ud,hashComments:o,multiLineStrings:o,regexLiterals:o}),[vd,wd,xd]);y(C({keywords:yd,hashComments:o,multiLineStrings:o,regexLiterals:o}),
31 P);q={e:e,d:s,g:f};Sa(q);w()}}}if(n<d.length)setTimeout(v,250);else a&&a()}function w(){var j=q.a;if(j){var f=q.g;if(Ma(f)){for(var s=document.createElement(gc),k=0;k<f.attributes.length;++k){var h=f.attributes[k];if(h.specified){var e=h.name.toLowerCase();if(e===Hd)s.className=h.value;else s.setAttribute(h.name,h.value)}}s.innerHTML=j;f.parentNode.replaceChild(s,f);f=s}else f.innerHTML=j;if(b&&f.tagName===gc)for(var p=f.getElementsByTagName(Id),t=p.length;--t>=0;){var u=p[t];u.parentNode.replaceChild(document.createTextNode(Jd),
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 1514 TreeNode<K,V> hd = null, tl = null; local
2679 TreeNode<K,V> hd = null, tl = null; local
2701 Node<K,V> hd = null, tl = null; local
    [all...]
  /external/eigen/Eigen/src/Core/arch/CUDA/
PacketMathHalf.h 467 half hd(aux[13]);
473 hf.x, he.x, hd.x, hc.x, hb.x, ha.x, h9.x, h8.x,
    [all...]
  /frameworks/base/tools/aapt/
XMLNode.cpp     [all...]

Completed in 934 milliseconds

12 3 4