Searched defs:small (Results 1 - 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dcgitb.py47 def small(text): function
49 return '<small>' + text + '</small>'
116 indent = '<tt>' + small('&nbsp;' * 5) + '&nbsp;</tt>'
144 num = small('&nbsp;' * (5-len(str(i))) + str(i)) + '&nbsp;'
168 rows.append('<tr><td>%s</td></tr>' % small(grey(', '.join(dump))))
/device/google/dragon/audio/hal/dsp/
H A Ddrc_kernel.c983 unsigned int small = min(read_index, write_index); local
988 unsigned int chunk = min(large - small,
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dmrhoist.c1107 int MR_tree_equ(Tree *big, Tree *small) { argument
1109 int MR_tree_equ(big,small)
1111 Tree *small;
1120 if (small == NULL && big == NULL) return 1;
1121 if (small == NULL) return 0;
1124 if (small->token == ALT) {
1125 require(small->right == NULL,
1126 "MR_tree_equ: small: ALT node has siblings");
1127 return MR_tree_equ(big,small->down);
1132 return MR_tree_equ(big->down,small);
[all...]

Completed in 306 milliseconds